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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 'INFOPLIST_FILE': 'app/framework-Info.plist', | 165 'INFOPLIST_FILE': 'app/framework-Info.plist', |
166 | 166 |
167 # Define the order of symbols within the framework. This | 167 # Define the order of symbols within the framework. This |
168 # sets -order_file. | 168 # sets -order_file. |
169 'ORDER_FILE': 'app/framework.order', | 169 'ORDER_FILE': 'app/framework.order', |
170 }, | 170 }, |
171 'sources': [ | 171 'sources': [ |
172 'app/chrome_dll_main.cc', | 172 'app/chrome_dll_main.cc', |
173 'app/chrome_dll_resource.h', | 173 'app/chrome_dll_resource.h', |
174 'app/chrome_exe_main.mm', | |
175 ], | 174 ], |
176 'include_dirs': [ | 175 'include_dirs': [ |
177 '<(grit_out_dir)', | 176 '<(grit_out_dir)', |
178 ], | 177 ], |
179 # TODO(mark): Come up with a fancier way to do this. It should | 178 # TODO(mark): Come up with a fancier way to do this. It should |
180 # only be necessary to list framework-Info.plist once, not the | 179 # only be necessary to list framework-Info.plist once, not the |
181 # three times it is listed here. | 180 # three times it is listed here. |
182 'mac_bundle_resources': [ | 181 'mac_bundle_resources': [ |
183 'app/framework-Info.plist', | 182 'app/framework-Info.plist', |
184 'app/nibs/About.xib', | 183 'app/nibs/About.xib', |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 'configurations': { | 530 'configurations': { |
532 'Common_Base': { | 531 'Common_Base': { |
533 'msvs_target_platform': 'x64', | 532 'msvs_target_platform': 'x64', |
534 }, | 533 }, |
535 }, | 534 }, |
536 }, # target chrome_dll | 535 }, # target chrome_dll |
537 ], | 536 ], |
538 }], | 537 }], |
539 ], | 538 ], |
540 } | 539 } |
OLD | NEW |