Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: ceee/ie/plugin/toolband/toolband.gyp

Issue 6106004: Added loading of nested BHO. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ceee/ie/plugin/toolband/resource.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ],
59 'sources': [ 71 'sources': [
60 'resource.h', 72 'resource.h',
61 'tool_band.rgs', 73 'tool_band.rgs',
62 'toolband.def', 74 'toolband.def',
63 'toolband.rc', 75 'toolband.rc',
64 'toolband_module.cc', 76 'toolband_module.cc',
65 '../bho/browser_helper_object.rgs', 77 '../bho/browser_helper_object.rgs',
66 '../executor.rgs', 78 '../executor.rgs',
67 '../scripting/content_script_manager.rc', 79 '../scripting/content_script_manager.rc',
80 '<(brand_specific_resources)',
68 ], 81 ],
69 'libraries': [ 82 'libraries': [
70 'iepmapi.lib', 83 'iepmapi.lib',
71 'oleacc.lib', 84 'oleacc.lib',
72 'rpcrt4.lib', 85 'rpcrt4.lib',
73 ], 86 ],
74 'include_dirs': [ 87 'include_dirs': [
75 # Allows us to include .tlb and .h files generated 88 # Allows us to include .tlb and .h files generated
76 # from our .idl without undue trouble 89 # from our .idl without undue trouble
77 '$(IntDir)', 90 '$(IntDir)',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 # This define adds ToolbandProxy as a prefix to the generated 156 # This define adds ToolbandProxy as a prefix to the generated
144 # proxy/stub entrypoint routine names. 157 # proxy/stub entrypoint routine names.
145 'ENTRY_PREFIX=ToolbandProxy', 158 'ENTRY_PREFIX=ToolbandProxy',
146 # The proxy stub code defines _purecall, which conflicts with our 159 # The proxy stub code defines _purecall, which conflicts with our
147 # CRT, so we neuter this here. 160 # CRT, so we neuter this here.
148 '_purecall=ToolbandPureCall', 161 '_purecall=ToolbandPureCall',
149 ], 162 ],
150 }, 163 },
151 ] 164 ]
152 } 165 }
OLDNEW
« no previous file with comments | « ceee/ie/plugin/toolband/resource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698