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

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

Issue 11882012: Convert all project to use common.mk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix missing common.mk path Created 7 years, 11 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
Index: native_client_sdk/src/build_tools/build_sdk.py
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index 7ed8506968d51bb21fec771bf6d6b82fae1d26f8..79a7a40bdf759138a4a4b7b9efb42161be6ff3d2 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -586,6 +586,8 @@ def BuildStepCopyBuildHelpers(pepperdir, platform):
buildbot_common.BuildStep('Copy build helpers')
buildbot_common.CopyDir(os.path.join(SDK_SRC_DIR, 'tools', '*.py'),
os.path.join(pepperdir, 'tools'))
+ buildbot_common.CopyDir(os.path.join(SDK_SRC_DIR, 'tools', '*.mk'),
+ os.path.join(pepperdir, 'tools'))
if platform == 'win':
buildbot_common.BuildStep('Add MAKE')
http_download.HttpDownload(GSTORE + MAKE,
@@ -746,7 +748,7 @@ def BuildStepMakeAll(pepperdir, platform, directory, step_name, clean=False):
env = os.environ
make = 'make'
- buildbot_common.Run([make, '-j8'],
+ buildbot_common.Run([make, '-j8', 'all_versions'],
cwd=os.path.abspath(make_dir), env=env)
if clean:
# Clean to remove temporary files but keep the built libraries.

Powered by Google App Engine
This is Rietveld 408576698