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

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

Issue 15017017: [NaCl SDK] Before bundling, clean all built libraries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: parallel builds Created 7 years, 7 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 | « no previous file | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_projects.py
diff --git a/native_client_sdk/src/build_tools/build_projects.py b/native_client_sdk/src/build_tools/build_projects.py
index b2c329fce64a948078bbc84d39c9df68a0fc526d..185bd2b1207c7423c26df2599209d92c923a1834 100755
--- a/native_client_sdk/src/build_tools/build_projects.py
+++ b/native_client_sdk/src/build_tools/build_projects.py
@@ -147,7 +147,7 @@ def BuildProjectsBranch(pepperdir, platform, branch, deps=True, clean=False,
extra_args += ['IGNORE_DEPS=1']
try:
- buildbot_common.Run([make, '-j8', 'all_versions'] + extra_args,
+ buildbot_common.Run([make, '-j8', 'TOOLCHAIN=all'] + extra_args,
cwd=make_dir)
except:
print 'Failed to build ' + branch
@@ -155,7 +155,7 @@ def BuildProjectsBranch(pepperdir, platform, branch, deps=True, clean=False,
if clean:
# Clean to remove temporary files but keep the built
- buildbot_common.Run([make, '-j8', 'clean'] + extra_args,
+ buildbot_common.Run([make, '-j8', 'clean', 'TOOLCHAIN=all'] + extra_args,
cwd=make_dir)
@@ -222,8 +222,7 @@ def main(args):
filters['NAME'] = options.project
print 'Filter by name: ' + str(options.project)
- project_tree = parse_dsc.LoadProjectTree(SDK_SRC_DIR, verbose=options.verbose,
- filters=filters)
+ project_tree = parse_dsc.LoadProjectTree(SDK_SRC_DIR, filters=filters)
parse_dsc.PrintProjectTree(project_tree)
UpdateHelpers(pepperdir, platform, clobber=options.clobber)
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/build_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698