| Index: tools/export_tarball/export_tarball.py
|
| diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py
|
| index 36a98268ffe03baa145dda5816c229f10f575a9f..7b90e4e3ba5e56764725d3c9df40c9bac1d0dbf7 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
|
|
|