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 }, | |
260 'dependencies': [ | 250 'dependencies': [ |
261 'helper_app', | 251 'helper_app', |
262 'infoplist_strings_tool', | 252 'infoplist_strings_tool', |
263 'interpose_dependency_shim', | 253 'interpose_dependency_shim', |
264 'chrome_manifest_bundle', | 254 'chrome_manifest_bundle', |
265 # On Mac, make sure we've built chrome_dll, which contains all of | 255 # On Mac, make sure we've built chrome_dll, which contains all of |
266 # the library code with Chromium functionality. | 256 # the library code with Chromium functionality. |
267 'chrome_dll', | 257 'chrome_dll', |
268 ], | 258 ], |
269 'mac_bundle_resources': [ | 259 'mac_bundle_resources': [ |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 'target_name': 'chrome_nacl_win64', | 588 'target_name': 'chrome_nacl_win64', |
599 'type': 'none', | 589 'type': 'none', |
600 'sources': [], | 590 'sources': [], |
601 }, | 591 }, |
602 ], | 592 ], |
603 }], | 593 }], |
604 ], | 594 ], |
605 }], | 595 }], |
606 ], | 596 ], |
607 } | 597 } |
OLD | NEW |