Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: chrome/chrome_exe.gypi

Issue 10830126: Do not pass -dead_strip to ld for the Mac helper and main apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 # chrome/app/app-Info.plist has: 240 # chrome/app/app-Info.plist has:
241 # CFBundleIdentifier of CHROMIUM_BUNDLE_ID 241 # CFBundleIdentifier of CHROMIUM_BUNDLE_ID
242 # CFBundleName of CHROMIUM_SHORT_NAME 242 # CFBundleName of CHROMIUM_SHORT_NAME
243 # CFBundleSignature of CHROMIUM_CREATOR 243 # CFBundleSignature of CHROMIUM_CREATOR
244 # Xcode then replaces these values with the branded values we set 244 # Xcode then replaces these values with the branded values we set
245 # as settings on the target. 245 # as settings on the target.
246 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', 246 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)',
247 'CHROMIUM_CREATOR': '<(mac_creator)', 247 'CHROMIUM_CREATOR': '<(mac_creator)',
248 'CHROMIUM_SHORT_NAME': '<(branding)', 248 'CHROMIUM_SHORT_NAME': '<(branding)',
249 }, 249 },
250 # Turn off -dead_strip in Release mode for the main app. There's
251 # little here to strip, and doing so preserves symbols from
252 # crt1.10.6.o, which get removed incorrectly. http://crbug.com/139902
253 'configurations': {
254 'Release': {
255 'xcode_settings': {
256 'DEAD_CODE_STRIPPING': 'NO',
257 },
258 },
259 },
250 'dependencies': [ 260 'dependencies': [
251 'helper_app', 261 'helper_app',
252 'infoplist_strings_tool', 262 'infoplist_strings_tool',
253 'interpose_dependency_shim', 263 'interpose_dependency_shim',
254 'chrome_manifest_bundle', 264 'chrome_manifest_bundle',
255 # On Mac, make sure we've built chrome_dll, which contains all of 265 # On Mac, make sure we've built chrome_dll, which contains all of
256 # the library code with Chromium functionality. 266 # the library code with Chromium functionality.
257 'chrome_dll', 267 'chrome_dll',
258 ], 268 ],
259 'mac_bundle_resources': [ 269 'mac_bundle_resources': [
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 'target_name': 'chrome_nacl_win64', 590 'target_name': 'chrome_nacl_win64',
581 'type': 'none', 591 'type': 'none',
582 'sources': [], 592 'sources': [],
583 }, 593 },
584 ], 594 ],
585 }], 595 }],
586 ], 596 ],
587 }], 597 }],
588 ], 598 ],
589 } 599 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698