OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |