diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:39:05 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-25 17:39:05 +0000 |
commit | a4ed76ec4efb2ea4e447b3ae3e70cf940cb8f333 (patch) | |
tree | 10f5940a95dce844645f1e22083286c83f900c47 /tools/export_tarball | |
parent | d3c793d0e253b0bede0a46680baf1327f0249094 (diff) | |
download | chromium_src-a4ed76ec4efb2ea4e447b3ae3e70cf940cb8f333.zip chromium_src-a4ed76ec4efb2ea4e447b3ae3e70cf940cb8f333.tar.gz chromium_src-a4ed76ec4efb2ea4e447b3ae3e70cf940cb8f333.tar.bz2 |
Remove more nonessential directories in export_tarball,
reducing the tarball size by ~ 50 MB (220 -> 170 MB).
BUG=none
TEST=none
Review URL: https://codereview.chromium.org/11226066
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/export_tarball')
-rwxr-xr-x | tools/export_tarball/export_tarball.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tools/export_tarball/export_tarball.py b/tools/export_tarball/export_tarball.py index ac366db..9ec5fe5 100755 --- a/tools/export_tarball/export_tarball.py +++ b/tools/export_tarball/export_tarball.py @@ -24,17 +24,25 @@ import tarfile NONESSENTIAL_DIRS = ( + 'breakpad/src/processor/testdata', + 'chrome/browser/resources/tracing/tests', 'chrome/common/extensions/docs', 'chrome/test/data', 'chrome/tools/test/reference_build', + 'content/test/data', 'courgette/testdata', 'data', + 'media/test/data', 'native_client/src/trusted/service_runtime/testdata', + 'net/data', 'src/chrome/test/data', 'o3d/documentation', 'o3d/samples', 'o3d/tests', + 'ppapi/examples', + 'ppapi/native_client/tests', 'third_party/angle/samples/gles2_book', + 'third_party/findbugs', 'third_party/hunspell_dictionaries', 'third_party/hunspell/tests', 'third_party/lighttpd', @@ -51,8 +59,12 @@ NONESSENTIAL_DIRS = ( 'third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests', 'third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests', 'third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests', - 'third_party/WebKit/Source/JavaScriptCore/tests', 'third_party/WebKit/LayoutTests', + 'third_party/WebKit/Source/JavaScriptCore/tests', + 'third_party/WebKit/Source/WebCore/ChangeLog', + 'third_party/WebKit/Source/WebKit2', + 'third_party/WebKit/Tools/Scripts', + 'tools/gyp/test', 'v8/test', 'webkit/data/layout_tests', 'webkit/tools/test/reference_build', |