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