Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: ppapi/generators/generator.py

Issue 10908085: Add pnacl shims to the chrome build. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: presubmit Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/nacl.gypi ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/generator.py
diff --git a/ppapi/generators/generator.py b/ppapi/generators/generator.py
index c65fe4c701d90a9ca4eb51af2a87a95c5895908c..ffa24d338ae14d97bd38db76eb77a3187cbdf0ab 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:
« no previous file with comments | « chrome/nacl.gypi ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698