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

Unified Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 83593003: Merge 236644 "[NaCl SDK] Turn off parallel GYP when building nac..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1700/src/
Patch Set: Created 7 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_sdk.py
===================================================================
--- native_client_sdk/src/build_tools/build_sdk.py (revision 236773)
+++ native_client_sdk/src/build_tools/build_sdk.py (working copy)
@@ -547,11 +547,13 @@
print '%s="%s"' % (key, value)
gyp_generator_flags = ['-G', 'output_dir=%s' % (out_dir,)]
gyp_depth = '--depth=.'
- buildbot_common.Run(
- [sys.executable, gyp_py_script, gyp_file, gyp_depth] + \
- gyp_generator_flags,
- cwd=SRC_DIR,
- env=gyp_env)
+ cmd = [sys.executable, gyp_py_script, gyp_file, gyp_depth]
+ # Hack added to fix M32 branch windows_sdk_multirel bot, without having to
+ # branch the native_client repo.
+ # TODO(binji): remove after I drover the change to 1700 branch.
+ cmd.append('--no-parallel')
+ cmd.extend(gyp_generator_flags)
+ buildbot_common.Run(cmd, cwd=SRC_DIR, env=gyp_env)
NinjaBuild(targets, out_dir)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698