| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'LD_DYLIB_INSTALL_NAME': | 163 'LD_DYLIB_INSTALL_NAME': |
| 164 '$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(WRAPPER_NAME)/
$(PRODUCT_NAME)', | 164 '$(DYLIB_INSTALL_NAME_BASE:standardizepath)/$(WRAPPER_NAME)/
$(PRODUCT_NAME)', |
| 165 | 165 |
| 166 'INFOPLIST_FILE': 'app/framework-Info.plist', | 166 'INFOPLIST_FILE': 'app/framework-Info.plist', |
| 167 | 167 |
| 168 # Define the order of symbols within the framework. This | 168 # Define the order of symbols within the framework. This |
| 169 # sets -order_file. | 169 # sets -order_file. |
| 170 'ORDER_FILE': 'app/framework.order', | 170 'ORDER_FILE': 'app/framework.order', |
| 171 }, | 171 }, |
| 172 'sources': [ | 172 'sources': [ |
| 173 'app/chrome_dll_app_mode_mac.mm', |
| 173 'app/chrome_dll_main.cc', | 174 'app/chrome_dll_main.cc', |
| 174 'app/chrome_dll_resource.h', | 175 'app/chrome_dll_resource.h', |
| 175 ], | 176 ], |
| 176 'include_dirs': [ | 177 'include_dirs': [ |
| 177 '<(grit_out_dir)', | 178 '<(grit_out_dir)', |
| 178 ], | 179 ], |
| 179 # TODO(mark): Come up with a fancier way to do this. It should | 180 # 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 | 181 # only be necessary to list framework-Info.plist once, not the |
| 181 # three times it is listed here. | 182 # three times it is listed here. |
| 182 'mac_bundle_resources': [ | 183 'mac_bundle_resources': [ |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 'configurations': { | 548 'configurations': { |
| 548 'Common_Base': { | 549 'Common_Base': { |
| 549 'msvs_target_platform': 'x64', | 550 'msvs_target_platform': 'x64', |
| 550 }, | 551 }, |
| 551 }, | 552 }, |
| 552 }, # target chrome_dll | 553 }, # target chrome_dll |
| 553 ], | 554 ], |
| 554 }], | 555 }], |
| 555 ], | 556 ], |
| 556 } | 557 } |
| OLD | NEW |