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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 10837149: Don't use NXArgc or NXArgv. Access them via _NSGetArgc() and _NSGetArgv(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make argvp conster 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
« chrome/browser/mac/relauncher.cc ('K') | « 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 },
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
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 }
OLDNEW
« chrome/browser/mac/relauncher.cc ('K') | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698