summaryrefslogtreecommitdiffstats
path: root/tools/export_tarball
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-06 17:06:25 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-06 17:06:25 +0000
commitaf484d5a2fee32af8800369a0a3e53372cf4f938 (patch)
tree454261ce126264ead5531d23473b4ac87dbb8027 /tools/export_tarball
parent85e57e8df053e54321158d35746d2e15a0f868ce (diff)
downloadchromium_src-af484d5a2fee32af8800369a0a3e53372cf4f938.zip
chromium_src-af484d5a2fee32af8800369a0a3e53372cf4f938.tar.gz
chromium_src-af484d5a2fee32af8800369a0a3e53372cf4f938.tar.bz2
Make v8 tarball export script pull gyp
(and possibly other v8 dependencies). This way generated tarball will be buildable without fetching anything else from the internet. BUG=none Review URL: http://codereview.chromium.org/8167001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104309 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/export_tarball')
-rw-r--r--tools/export_tarball/export_v8_tarball.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/export_tarball/export_v8_tarball.py b/tools/export_tarball/export_v8_tarball.py
index 9715591..3119954 100644
--- a/tools/export_tarball/export_v8_tarball.py
+++ b/tools/export_tarball/export_v8_tarball.py
@@ -89,6 +89,8 @@ def main(argv):
print 'Already packaged, exiting.'
return 0
+ subprocess.check_call(["make", "dependencies"], cwd=v8_directory)
+
archive = MyTarFile.open(output_fullname, 'w:bz2')
try:
archive.add(v8_directory, arcname=output_basename)