diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 15:03:58 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 15:03:58 +0000 |
commit | 3e57d6b055be869341007f39c92f8fb88d33720e (patch) | |
tree | 4f6800b14de068ecaea6d61a53c218e3b8c1fb43 | |
parent | 7a3093d85ebf48a90848be175d6a12fca9ccc78d (diff) | |
download | chromium_src-3e57d6b055be869341007f39c92f8fb88d33720e.zip chromium_src-3e57d6b055be869341007f39c92f8fb88d33720e.tar.gz chromium_src-3e57d6b055be869341007f39c92f8fb88d33720e.tar.bz2 |
Do not remove courgette from the tarball, looks like it's required for compile
BUG=none
R=maruel@chromium.org
Review URL: https://codereview.chromium.org/235153004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263246 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | tools/export_tarball/export_tarball.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py index 36a9826..7b90e4e 100755 --- a/tools/export_tarball/export_tarball.py +++ b/tools/export_tarball/export_tarball.py @@ -74,10 +74,6 @@ TESTDIRS = ( 'net/data', ) -PRUNEDDIRS = ( - 'courgette', -) - def GetSourceDirectory(): return os.path.realpath( @@ -103,7 +99,7 @@ class MyTarFile(tarfile.TarFile): # Remove contents of non-essential directories, but preserve gyp files, # so that build/gyp_chromium can work. - for nonessential_dir in (NONESSENTIAL_DIRS + TESTDIRS + PRUNEDDIRS): + for nonessential_dir in (NONESSENTIAL_DIRS + TESTDIRS): dir_path = os.path.join(GetSourceDirectory(), nonessential_dir) if (name.startswith(dir_path) and os.path.isfile(name) and |