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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 2791001: Take Keystone keys out of the framework's Info.plist (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 6 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') | chrome/chrome_exe.gypi » ('j') | 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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chrome_dll_target': 0, 7 'chrome_dll_target': 0,
8 }, 8 },
9 'target_conditions': [ 9 'target_conditions': [
10 ['chrome_dll_target==1', { 10 ['chrome_dll_target==1', {
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 }, 384 },
385 'action': [ 385 'action': [
386 '<(verify_order_path)', 386 '<(verify_order_path)',
387 '_ChromeMain', 387 '_ChromeMain',
388 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', 388 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}',
389 ], 389 ],
390 }, 390 },
391 { 391 {
392 # Modify the Info.plist as needed. The script explains why 392 # Modify the Info.plist as needed. The script explains why
393 # this is needed. This is also done in the chrome target. 393 # this is needed. This is also done in the chrome target.
394 # The framework needs the Breakpad and Keystone keys if 394 # The framework needs the Breakpad keys if this feature is
395 # those features are enabled. It doesn't currently use the 395 # enabled. It does not need the Keystone keys; these always
396 # Subversion keys for anything, but this seems like a really 396 # come from the outer application bundle. The framework
397 # good place to store them. 397 # doesn't currently use the Subversion keys for anything,
398 # but this seems like a really good place to store them.
398 'postbuild_name': 'Tweak Info.plist', 399 'postbuild_name': 'Tweak Info.plist',
399 'action': ['<(tweak_info_plist_path)', 400 'action': ['<(tweak_info_plist_path)',
400 '-b<(mac_breakpad)', 401 '-b<(mac_breakpad)',
401 '-k<(mac_keystone)', 402 '-k0',
402 '-s1', 403 '-s1',
403 '<(branding)', 404 '<(branding)',
404 '<(mac_bundle_id)'], 405 '<(mac_bundle_id)'],
405 }, 406 },
406 { 407 {
407 'postbuild_name': 'Symlink Libraries', 408 'postbuild_name': 'Symlink Libraries',
408 'action': [ 409 'action': [
409 'ln', 410 'ln',
410 '-fhs', 411 '-fhs',
411 'Versions/Current/Libraries', 412 'Versions/Current/Libraries',
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 'configurations': { 550 'configurations': {
550 'Common_Base': { 551 'Common_Base': {
551 'msvs_target_platform': 'x64', 552 'msvs_target_platform': 'x64',
552 }, 553 },
553 }, 554 },
554 }, # target chrome_dll 555 }, # target chrome_dll
555 ], 556 ],
556 }], 557 }],
557 ], 558 ],
558 } 559 }
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698