diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 23:29:03 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-01 23:29:03 +0000 |
commit | 05cb696a16d7d42a2e7c1c88238038acfb0b1ad3 (patch) | |
tree | dd0aee473968bc958dca382bff5272fe91d7b129 /build/common.gypi | |
parent | 8ac2dc11280ad44e5fba538580a88a3b10d2f657 (diff) | |
download | chromium_src-05cb696a16d7d42a2e7c1c88238038acfb0b1ad3.zip chromium_src-05cb696a16d7d42a2e7c1c88238038acfb0b1ad3.tar.gz chromium_src-05cb696a16d7d42a2e7c1c88238038acfb0b1ad3.tar.bz2 |
Add (yet another) option to allow stripping the chrome binary after dumping symbols. Chromebot does not like 200MB zip files and 800MB chrome binaries.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/259008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index bffde17..37526e2 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -42,7 +42,8 @@ # situations. I.e. for Chrome bot. 'linux_chromium_breakpad%': 0, # And if we want to dump symbols. - 'linux_chromium_dump_symbols': 0, + 'linux_chromium_dump_symbols%': 0, + # Also see linux_strip_binary below. # By default, Linux does not use views. To turn on views in Linux, # set the variable GYP_DEFINES to "toolkit_views=1", or modify @@ -147,6 +148,9 @@ # Set this to true to enable SELinux support. 'selinux%': 0, + # Strip the binary after dumping symbols. + 'linux_strip_binary%': 0, + # Set to select the Title Case versions of strings in GRD files. 'use_titlecase_in_grd_files%': 0, |