diff options
author | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 09:49:34 +0000 |
---|---|---|
committer | bradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 09:49:34 +0000 |
commit | ce145c0884c19c9946831ccf082c4c15b755f5cc (patch) | |
tree | 3c8bdf800b94c4de6ca82ec01780ebf4510f99d2 /ppapi/generators/generator.py | |
parent | 9eb52cf9acd967a437d11a8c5067c0e470538ba9 (diff) | |
download | chromium_src-ce145c0884c19c9946831ccf082c4c15b755f5cc.zip chromium_src-ce145c0884c19c9946831ccf082c4c15b755f5cc.tar.gz chromium_src-ce145c0884c19c9946831ccf082c4c15b755f5cc.tar.bz2 |
Add pnacl shims to the chrome build.
Altering IDL generator to emit pnacl shims.
Building pnacl shims as part of the chrome build.
Publishing pnacl shims in the sdk.
BUG=http://code.google.com/p/nativeclient/issues/detail?id=2957
TEST=None
R=noelallen@chromium.org,jvoung@chromium.org,ncbray@chromium.org,nfullagar@chromium.org,brettw@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10908085
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155160 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/generators/generator.py')
-rwxr-xr-x | ppapi/generators/generator.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ppapi/generators/generator.py b/ppapi/generators/generator.py index c65fe4c..ffa24d3 100755 --- a/ppapi/generators/generator.py +++ b/ppapi/generators/generator.py @@ -20,7 +20,11 @@ def Main(): # If no arguments are provided, assume we are trying to rebuild the # C headers with warnings off. if not args: - args = ['--wnone', '--cgen', '--range=start,end'] + args = [ + '--wnone', '--cgen', '--range=start,end', + '--pnacl', '--pnaclshim', + '../native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c', + ] current_dir = os.path.abspath(os.getcwd()) script_dir = os.path.abspath(os.path.dirname(__file__)) if current_dir != script_dir: |