OLD | NEW |
1 # Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009-2010 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 17 matching lines...) Expand all Loading... |
28 'mac_bundle_resources': [ | 28 'mac_bundle_resources': [ |
29 'app/app-Info.plist', | 29 'app/app-Info.plist', |
30 ], | 30 ], |
31 # TODO(mark): Come up with a fancier way to do this. It should only | 31 # TODO(mark): Come up with a fancier way to do this. It should only |
32 # be necessary to list app-Info.plist once, not the three times it is | 32 # be necessary to list app-Info.plist once, not the three times it is |
33 # listed here. | 33 # listed here. |
34 'mac_bundle_resources!': [ | 34 'mac_bundle_resources!': [ |
35 'app/app-Info.plist', | 35 'app/app-Info.plist', |
36 ], | 36 ], |
37 'xcode_settings': { | 37 'xcode_settings': { |
| 38 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', |
38 'INFOPLIST_FILE': 'app/app-Info.plist', | 39 'INFOPLIST_FILE': 'app/app-Info.plist', |
39 }, | 40 }, |
40 'conditions': [ | 41 'conditions': [ |
41 ['OS=="win"', { | 42 ['OS=="win"', { |
42 'sources': [ | 43 'sources': [ |
43 'app/chrome_exe.rc', | 44 'app/chrome_exe.rc', |
44 'app/chrome_exe_version.rc.version', | 45 'app/chrome_exe_version.rc.version', |
45 ], | 46 ], |
46 'include_dirs': [ | 47 'include_dirs': [ |
47 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 48 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 'configurations': { | 522 'configurations': { |
522 'Common_Base': { | 523 'Common_Base': { |
523 'msvs_target_platform': 'x64', | 524 'msvs_target_platform': 'x64', |
524 }, | 525 }, |
525 }, | 526 }, |
526 }, | 527 }, |
527 ], | 528 ], |
528 }], | 529 }], |
529 ], | 530 ], |
530 } | 531 } |
OLD | NEW |