Commit a8edf258 authored by noelallen@google.com's avatar noelallen@google.com

Fix size regression on Mac

Change: http://codereview.chromium.org/8502036 added a size regression
since it failed to strip debug information from the IRT.  This CL
pulls in the change to build_nexe.py via DEPS roll and adds the
strip flag.

BUG= http://code.google.com/p/chromium/issues/detail?id=96782
TBR=dmichael@chromium.org
Review URL: http://codereview.chromium.org/8550001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109780 0039d316-1c4b-4281-b951-d872f2087c98
parent 0e58d5e5
...@@ -8,7 +8,7 @@ vars = { ...@@ -8,7 +8,7 @@ vars = {
"webkit_revision": "100033", "webkit_revision": "100033",
"chromium_git": "http://git.chromium.org/git", "chromium_git": "http://git.chromium.org/git",
"swig_revision": "69281", "swig_revision": "69281",
"nacl_revision": "7141", "nacl_revision": "7144",
# After changing nacl_revision, run 'glient sync' and check native_client/DEPS # After changing nacl_revision, run 'glient sync' and check native_client/DEPS
# to update other nacl_*_revision's. # to update other nacl_*_revision's.
"nacl_tools_revision": "7088", # native_client/DEPS: tools_rev "nacl_tools_revision": "7088", # native_client/DEPS: tools_rev
......
...@@ -58,6 +58,9 @@ ...@@ -58,6 +58,9 @@
], ],
'sources': [ 'sources': [
], ],
'extra_args': [
'--strip-debug',
],
'extra_deps64': [ 'extra_deps64': [
'<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppruntime.a', '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppruntime.a',
'<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libirt_browser.a', '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libirt_browser.a',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment