diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/app/app.saves | 4 | ||||
-rw-r--r-- | chrome/chrome.gyp | 5 | ||||
-rw-r--r-- | chrome/chrome_exe.gypi | 5 |
3 files changed, 13 insertions, 1 deletions
diff --git a/chrome/app/app.saves b/chrome/app/app.saves index 252f544..8ae1b93 100644 --- a/chrome/app/app.saves +++ b/chrome/app/app.saves @@ -1,4 +1,4 @@ -# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -6,3 +6,5 @@ # helper app executables. _main +_NXArgc +_NXArgv diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index 9c1c272..60d94f6 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -1050,6 +1050,11 @@ # A real .dSYM is needed for dump_syms to operate on. 'mac_real_dsym': 1, }, + 'xcode_settings': { + # With mac_real_dsym set, strip_from_xcode won't be used. + # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. + 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', + }, }], ], }, # target helper_app diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 238779f..6ab3910 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -269,6 +269,11 @@ # A real .dSYM is needed for dump_syms to operate on. 'mac_real_dsym': 1, }, + 'xcode_settings': { + # With mac_real_dsym set, strip_from_xcode won't be used. + # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. + 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', + }, 'dependencies': [ '../breakpad/breakpad.gyp:dump_syms', '../breakpad/breakpad.gyp:symupload', |