summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-24 04:03:49 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-24 04:03:49 +0000
commitf2ca86c3ea0594428c6e928807b70af62ff7ad7e (patch)
tree8bf299fa342372d7b28b4698c1d1b7490de1f643 /tools
parent454434f6100cb6a529652a25b5fc181caa7c7f32 (diff)
downloadchromium_src-f2ca86c3ea0594428c6e928807b70af62ff7ad7e.zip
chromium_src-f2ca86c3ea0594428c6e928807b70af62ff7ad7e.tar.gz
chromium_src-f2ca86c3ea0594428c6e928807b70af62ff7ad7e.tar.bz2
Switching NaCl IRT to be built inside the chrome build.
Fourth attempt: Switching IRT to be built inside the chrome build. Dropping the IRT download step from the DEPS. Step3 of a many step plan to switch where ppapi + irt are built. Dropping download_nacl_irt because we no longer rely on a prebuilt copy. Dropping irt download drop source tarball (assume people using it will have to download / build their own nacl toolchain). Old Review URL: http://codereview.chromium.org/7669058 Review URL: http://codereview.chromium.org/7701017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97987 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/export_tarball/export_tarball.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py
index 03c8995..787182e 100644
--- a/tools/export_tarball/export_tarball.py
+++ b/tools/export_tarball/export_tarball.py
@@ -98,17 +98,6 @@ def main(argv):
print 'Cannot find the src directory.'
return 1
- nacl_download_path = os.path.join(
- GetSourceDirectory(), 'build', 'download_nacl_irt.py')
- nacl_cwd = os.path.join(GetSourceDirectory(), '..')
- if subprocess.call(['python', nacl_download_path], cwd=nacl_cwd) != 0:
- # The error is not fatal - NaCl is still experimental.
- print 'Failed to download NaCl integrated runtime files.'
- print 'The NaCl-enabled build will fail. You can pass -Ddisable_nacl=1'
- print 'to gyp as a workaround. For more info see'
- print ('http://groups.google.com/a/chromium.org/group/chromium-dev/'
- 'browse_thread/thread/1fe6e2c3f9e78c2b')
-
output_fullname = args[0] + '.tar.bz2'
output_basename = os.path.basename(args[0])