summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbinji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 17:55:20 +0000
committerbinji@chromium.org <binji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-18 17:55:20 +0000
commitc1f5b4143d01bcfa8a826338eebfe3503a28128e (patch)
tree735a80342290225a9d866251f8e0cd5fdeadbde8
parentdc6f78059cacf1590d8f5726d75c5f8c84b2ea93 (diff)
downloadchromium_src-c1f5b4143d01bcfa8a826338eebfe3503a28128e.zip
chromium_src-c1f5b4143d01bcfa8a826338eebfe3503a28128e.tar.gz
chromium_src-c1f5b4143d01bcfa8a826338eebfe3503a28128e.tar.bz2
[NaCl SDK] Turn off building win host for now, the buildbots don't have cl.exe in the path.
BUG=none TEST=none TBR=noelallen@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10799009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147268 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xnative_client_sdk/src/build_tools/build_sdk.py19
1 files changed, 10 insertions, 9 deletions
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index ec21f90..b6c739e 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -540,15 +540,16 @@ def main(args):
tarfile = os.path.join(OUT_DIR, tarname)
# Ship with libraries prebuilt, so run that first
- buildbot_common.BuildStep('Build Libraries')
- src_dir = os.path.join(pepperdir, 'src')
- makefile = os.path.join(src_dir, 'Makefile')
- if os.path.isfile(makefile):
- print "\n\nMake: " + src_dir
- buildbot_common.Run(['make', '-j8'],
- cwd=os.path.abspath(src_dir), shell=True)
- buildbot_common.Run(['make', '-j8', 'clean'],
- cwd=os.path.abspath(src_dir), shell=True)
+ if False:
+ buildbot_common.BuildStep('Build Libraries')
+ src_dir = os.path.join(pepperdir, 'src')
+ makefile = os.path.join(src_dir, 'Makefile')
+ if os.path.isfile(makefile):
+ print "\n\nMake: " + src_dir
+ buildbot_common.Run(['make', '-j8'],
+ cwd=os.path.abspath(src_dir), shell=True)
+ buildbot_common.Run(['make', '-j8', 'clean'],
+ cwd=os.path.abspath(src_dir), shell=True)
if not skip_tar:
buildbot_common.BuildStep('Tar Pepper Bundle')