OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../../../build/common.gypi', | 10 '../../../../build/common.gypi', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 '<(DEPTH)/ceee/ie/broker/broker.gyp:broker_rpc_idl', | 49 '<(DEPTH)/ceee/ie/broker/broker.gyp:broker_rpc_idl', |
50 '<(DEPTH)/ceee/ie/broker/broker.gyp:broker_rpc_lib', | 50 '<(DEPTH)/ceee/ie/broker/broker.gyp:broker_rpc_lib', |
51 '<(DEPTH)/ceee/ie/common/common.gyp:ie_common_settings', | 51 '<(DEPTH)/ceee/ie/common/common.gyp:ie_common_settings', |
52 '<(DEPTH)/ceee/ie/common/common.gyp:ie_guids', | 52 '<(DEPTH)/ceee/ie/common/common.gyp:ie_guids', |
53 '<(DEPTH)/ceee/ie/plugin/bho/bho.gyp:bho', | 53 '<(DEPTH)/ceee/ie/plugin/bho/bho.gyp:bho', |
54 '<(DEPTH)/ceee/ie/plugin/scripting/scripting.gyp:scripting', | 54 '<(DEPTH)/ceee/ie/plugin/scripting/scripting.gyp:scripting', |
55 '<(DEPTH)/ceee/ie/plugin/scripting/scripting.gyp:javascript_bindings', | 55 '<(DEPTH)/ceee/ie/plugin/scripting/scripting.gyp:javascript_bindings', |
56 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 56 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
57 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', | 57 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', |
58 ], | 58 ], |
59 'conditions': [ | |
60 [ 'branding == "Chrome"', { | |
61 'variables': { | |
62 'brand_specific_resources': | |
63 '../../../internal/toolband/brand_specific_resources.rc', | |
64 }, | |
65 }, { # else branding != "Chrome" | |
66 'variables': { | |
67 'brand_specific_resources': 'brand_specific_resources.rc', | |
68 }, | |
69 }], | |
70 ], | |
71 'sources': [ | 59 'sources': [ |
72 'resource.h', | 60 'resource.h', |
73 'tool_band.rgs', | 61 'tool_band.rgs', |
74 'toolband.def', | 62 'toolband.def', |
75 'toolband.rc', | 63 'toolband.rc', |
76 'toolband_module.cc', | 64 'toolband_module.cc', |
77 '../bho/browser_helper_object.rgs', | 65 '../bho/browser_helper_object.rgs', |
78 '../executor.rgs', | 66 '../executor.rgs', |
79 '../scripting/content_script_manager.rc', | 67 '../scripting/content_script_manager.rc', |
80 '<(brand_specific_resources)', | |
81 ], | 68 ], |
82 'libraries': [ | 69 'libraries': [ |
83 'iepmapi.lib', | 70 'iepmapi.lib', |
84 'oleacc.lib', | 71 'oleacc.lib', |
85 'rpcrt4.lib', | 72 'rpcrt4.lib', |
86 ], | 73 ], |
87 'include_dirs': [ | 74 'include_dirs': [ |
88 # Allows us to include .tlb and .h files generated | 75 # Allows us to include .tlb and .h files generated |
89 # from our .idl without undue trouble | 76 # from our .idl without undue trouble |
90 '$(IntDir)', | 77 '$(IntDir)', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 # This define adds ToolbandProxy as a prefix to the generated | 143 # This define adds ToolbandProxy as a prefix to the generated |
157 # proxy/stub entrypoint routine names. | 144 # proxy/stub entrypoint routine names. |
158 'ENTRY_PREFIX=ToolbandProxy', | 145 'ENTRY_PREFIX=ToolbandProxy', |
159 # The proxy stub code defines _purecall, which conflicts with our | 146 # The proxy stub code defines _purecall, which conflicts with our |
160 # CRT, so we neuter this here. | 147 # CRT, so we neuter this here. |
161 '_purecall=ToolbandPureCall', | 148 '_purecall=ToolbandPureCall', |
162 ], | 149 ], |
163 }, | 150 }, |
164 ] | 151 ] |
165 } | 152 } |
OLD | NEW |