OLD | NEW |
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': 'none', | 9 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 # be necessary to list app-Info.plist once, not the three times it is | 73 # be necessary to list app-Info.plist once, not the three times it is |
74 # listed here. | 74 # listed here. |
75 'mac_bundle_resources!': [ | 75 'mac_bundle_resources!': [ |
76 'app/app-Info.plist', | 76 'app/app-Info.plist', |
77 ], | 77 ], |
78 'xcode_settings': { | 78 'xcode_settings': { |
79 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', | 79 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', |
80 'INFOPLIST_FILE': 'app/app-Info.plist', | 80 'INFOPLIST_FILE': 'app/app-Info.plist', |
81 }, | 81 }, |
82 'conditions': [ | 82 'conditions': [ |
83 ['component == "shared_library"', { | |
84 'variables': { | |
85 'win_use_external_manifest': 1, | |
86 }, | |
87 }], | |
88 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { | 83 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { |
89 'dependencies' : [ | 84 'dependencies' : [ |
90 '../tools/cygprofile/cygprofile.gyp:cygprofile', | 85 '../tools/cygprofile/cygprofile.gyp:cygprofile', |
91 ], | 86 ], |
92 }], | 87 }], |
93 ['order_text_section!=""', { | 88 ['order_text_section!=""', { |
94 'target_conditions' : [ | 89 'target_conditions' : [ |
95 ['_toolset=="target"', { | 90 ['_toolset=="target"', { |
96 'ldflags': [ | 91 'ldflags': [ |
97 '-Wl,-section-ordering-file=<(order_text_section)' ], | 92 '-Wl,-section-ordering-file=<(order_text_section)' ], |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 'dependencies': [ | 693 'dependencies': [ |
699 'chrome_nacl_win64', | 694 'chrome_nacl_win64', |
700 ], | 695 ], |
701 }], | 696 }], |
702 ], | 697 ], |
703 }, | 698 }, |
704 ], | 699 ], |
705 }], | 700 }], |
706 ], | 701 ], |
707 } | 702 } |
OLD | NEW |