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

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

Issue 9407015: Revert 122113 - Fix pnacl SDK builder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 | « build/download_nacl_toolchains.py ('k') | 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/buildbot_run.py
===================================================================
--- native_client_sdk/src/build_tools/buildbot_run.py (revision 122114)
+++ native_client_sdk/src/build_tools/buildbot_run.py (working copy)
@@ -480,11 +480,10 @@
platform = getos.GetPlatform()
arch = 'x86'
- if not options.pnacl:
- toolchains = ['newlib', 'glibc']
- else:
- toolchains = ['pnacl']
- print 'Building: ' + ' '.join(toolchains)
+ toolchains = ['newlib', 'glibc']
+ if options.pnacl:
+ toolchains.append('pnacl')
+
skip = options.examples or options.update
skip_examples = skip
@@ -541,8 +540,6 @@
if not skip_tar:
BuildStep('Tar Pepper Bundle')
tarname = 'naclsdk_' + platform + '.bz2'
- if 'pnacl' in toolchains:
- tarname = 'p' + tarname
tarfile = os.path.join(OUT_DIR, tarname)
Run([sys.executable, CYGTAR, '-C', OUT_DIR, '-cjf', tarfile,
'pepper_' + pepper_ver], cwd=NACL_DIR)
« no previous file with comments | « build/download_nacl_toolchains.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698