diff options
author | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 15:54:26 +0000 |
---|---|---|
committer | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 15:54:26 +0000 |
commit | d48a1771dd66c0b29fffdaafba2144efadf8b4ea (patch) | |
tree | 0ebef8fe587ff6d4c3aa94341b0a938498f861b6 /ppapi | |
parent | d5cc935e768ab683e73b9ad82ce6a91edeb9242c (diff) | |
download | chromium_src-d48a1771dd66c0b29fffdaafba2144efadf8b4ea.zip chromium_src-d48a1771dd66c0b29fffdaafba2144efadf8b4ea.tar.gz chromium_src-d48a1771dd66c0b29fffdaafba2144efadf8b4ea.tar.bz2 |
Use --strip-debug on pnacl_irt_shim archive to reduce size of chrome bundle.
Debugging nexes from pexes, could be done offline anyway.
Depends on: https://codereview.chromium.org/11576019/
to actually have an effect. Otherwise the flag is ignored.
BUG=none
Review URL: https://codereview.chromium.org/11566017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp index 011c2c2..7c67da4 100644 --- a/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp +++ b/ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_irt_shim.gyp @@ -10,9 +10,6 @@ { 'target_name': 'pnacl_irt_shim', 'type': 'none', - # TODO(jvoung): should be able to --strip-debug - # this archive to reduce the size to 25% of what - # it is now. 'variables': { 'nlib_target': 'libpnacl_irt_shim.a', 'out_newlib_arm': '<(SHARED_INTERMEDIATE_DIR)/tc_pnacl_translate/lib-arm/libpnacl_irt_shim.a', @@ -28,6 +25,9 @@ 'include_dirs': [ '../../../..', ], + 'extra_args': [ + '--strip-debug', + ], 'conditions': [ ['target_arch=="arm"', { 'compile_flags': [ |