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

Side by Side Diff: chrome/chrome.gyp

Issue 87014: .gyp file for Breakpad on OS X. (Closed)
Patch Set: Fix John's comments + obj-c side. Created 11 years, 8 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
« breakpad/breakpad.gyp ('K') | « chrome/app/breakpad_mac.mm ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'common/jstemplate_builder.h', 206 'common/jstemplate_builder.h',
207 'common/l10n_util.cc', 207 'common/l10n_util.cc',
208 'common/l10n_util.h', 208 'common/l10n_util.h',
209 'common/l10n_util_posix.cc', 209 'common/l10n_util_posix.cc',
210 'common/l10n_util_win.cc', 210 'common/l10n_util_win.cc',
211 'common/l10n_util_win.h', 211 'common/l10n_util_win.h',
212 'common/libxml_utils.cc', 212 'common/libxml_utils.cc',
213 'common/libxml_utils.h', 213 'common/libxml_utils.h',
214 'common/logging_chrome.cc', 214 'common/logging_chrome.cc',
215 'common/logging_chrome.h', 215 'common/logging_chrome.h',
216 'common/mach_ipc_mac.h',
217 'common/mach_ipc_mac.mm',
218 'common/mach_message_source_mac.cc',
219 'common/mach_message_source_mac.h',
220 'common/main_function_params.h', 216 'common/main_function_params.h',
221 'common/message_box_flags.h', 217 'common/message_box_flags.h',
222 'common/message_router.cc', 218 'common/message_router.cc',
223 'common/message_router.h', 219 'common/message_router.h',
224 'common/modal_dialog_event.h', 220 'common/modal_dialog_event.h',
225 'common/mru_cache.h', 221 'common/mru_cache.h',
226 'common/navigation_types.h', 222 'common/navigation_types.h',
227 'common/native_web_keyboard_event.h', 223 'common/native_web_keyboard_event.h',
228 'common/native_web_keyboard_event_linux.cc', 224 'common/native_web_keyboard_event_linux.cc',
229 'common/native_web_keyboard_event_mac.mm', 225 'common/native_web_keyboard_event_mac.mm',
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after
1646 ['branding=="Chrome"', { 1642 ['branding=="Chrome"', {
1647 'mac_bundle_resources': ['app/theme/google_chrome/app.icns'], 1643 'mac_bundle_resources': ['app/theme/google_chrome/app.icns'],
1648 # "bundle_id" is the name of the variable used to replace 1644 # "bundle_id" is the name of the variable used to replace
1649 # BUNDLE_ID in Info.plist. 1645 # BUNDLE_ID in Info.plist.
1650 'variables': {'bundle_id': 'com.google.Chrome'}, 1646 'variables': {'bundle_id': 'com.google.Chrome'},
1651 }, { # else: branding!="Chrome" 1647 }, { # else: branding!="Chrome"
1652 'mac_bundle_resources': ['app/theme/chromium/app.icns'], 1648 'mac_bundle_resources': ['app/theme/chromium/app.icns'],
1653 'variables': {'bundle_id': 'org.chromium.Chromium'}, 1649 'variables': {'bundle_id': 'org.chromium.Chromium'},
1654 }], 1650 }],
1655 ], 1651 ],
1652 'dependencies': [
1653 '../breakpad/breakpad.gyp:breakpad',
1654 ],
1656 'xcode_settings': { 1655 'xcode_settings': {
1657 # chrome/app/app-Info.plist has a CFBundleIdentifier of BUNDLE_ID, 1656 # chrome/app/app-Info.plist has a CFBundleIdentifier of BUNDLE_ID,
1658 # to be replaced by a properly branded bundle ID in Xcode with 1657 # to be replaced by a properly branded bundle ID in Xcode with
1659 # these settings. 1658 # these settings.
1660 'INFOPLIST_PREPROCESS': 'YES', 1659 'INFOPLIST_PREPROCESS': 'YES',
1661 'INFOPLIST_PREPROCESSOR_DEFINITIONS': ['BUNDLE_ID="<(bundle_id)"'], 1660 'INFOPLIST_PREPROCESSOR_DEFINITIONS': ['BUNDLE_ID="<(bundle_id)"'],
1661 # Needed for breakpad.
Mark Mentovai 2009/04/21 00:42:12 Nope, take this out. If you get link_settings rig
1662 'OTHER_LDFLAGS': ['-lcrypto',],
1662 }, 1663 },
1663 }, { # else: OS != "mac" 1664 }, { # else: OS != "mac"
1664 'conditions': [ 1665 'conditions': [
1665 ['branding=="Chrome"', { 1666 ['branding=="Chrome"', {
1666 'product_name': 'chrome' 1667 'product_name': 'chrome'
1667 }, { # else: Branding!="Chrome" 1668 }, { # else: Branding!="Chrome"
1668 # TODO: change to: 1669 # TODO: change to:
1669 # 'product_name': 'chromium' 1670 # 'product_name': 'chromium'
1670 # whenever we convert the rest of the infrastructure 1671 # whenever we convert the rest of the infrastructure
1671 # (buildbots etc.) to use "gyp -Dbranding=Chrome". 1672 # (buildbots etc.) to use "gyp -Dbranding=Chrome".
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2918 '../tools/code_coverage/coverage_posix.py', 2919 '../tools/code_coverage/coverage_posix.py',
2919 '--directory', 2920 '--directory',
2920 '<(PRODUCT_DIR)' ], 2921 '<(PRODUCT_DIR)' ],
2921 }, 2922 },
2922 ], # 'actions' 2923 ], # 'actions'
2923 }, 2924 },
2924 ] 2925 ]
2925 }], 2926 }],
2926 ], # 'conditions' 2927 ], # 'conditions'
2927 } 2928 }
OLDNEW
« breakpad/breakpad.gyp ('K') | « chrome/app/breakpad_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698