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

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

Issue 5010001: COM replaced with RPC for firing events in broker.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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/ie.gyp ('k') | ceee/ie/plugin/toolband/toolband_module.cc » ('j') | 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 26 matching lines...) Expand all
37 'Debug': { 37 'Debug': {
38 'msvs_precompiled_source': '../../common/precompile.cc', 38 'msvs_precompiled_source': '../../common/precompile.cc',
39 'msvs_precompiled_header': '../../common/precompile.h', 39 'msvs_precompiled_header': '../../common/precompile.h',
40 }, 40 },
41 }, 41 },
42 }, 42 },
43 { 43 {
44 'target_name': 'ceee_ie', 44 'target_name': 'ceee_ie',
45 'type': 'shared_library', 45 'type': 'shared_library',
46 'dependencies': [ 46 'dependencies': [
47 '../../broker/broker.gyp:broker_rpc_lib',
47 'ceee_ie_lib', 48 'ceee_ie_lib',
48 'ie_toolband_common', 49 'ie_toolband_common',
49 'toolband_idl', 50 'toolband_idl',
50 '../bho/bho.gyp:bho', 51 '../bho/bho.gyp:bho',
51 '../scripting/scripting.gyp:scripting', 52 '../scripting/scripting.gyp:scripting',
52 '../../common/common.gyp:ie_common_settings', 53 '../../common/common.gyp:ie_common_settings',
53 '../../common/common.gyp:ie_guids', 54 '../../common/common.gyp:ie_guids',
54 '../../../../base/base.gyp:base', 55 '../../../../base/base.gyp:base',
55 '../../../../breakpad/breakpad.gyp:breakpad_handler', 56 '../../../../breakpad/breakpad.gyp:breakpad_handler',
56 '../../../../ceee/common/common.gyp:ceee_common', 57 '../../../../ceee/common/common.gyp:ceee_common',
57 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', 58 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header',
58 ], 59 ],
59 'sources': [ 60 'sources': [
60 '../../common/precompile.cc', 61 '../../common/precompile.cc',
61 '../../common/precompile.h', 62 '../../common/precompile.h',
62 'resource.h', 63 'resource.h',
63 'tool_band.rgs', 64 'tool_band.rgs',
64 'toolband.def', 65 'toolband.def',
65 'toolband.rc', 66 'toolband.rc',
66 'toolband_module.cc', 67 'toolband_module.cc',
67 '../bho/browser_helper_object.rgs', 68 '../bho/browser_helper_object.rgs',
68 '../executor.rgs', 69 '../executor.rgs',
69 '../executor_creator.rgs', 70 '../executor_creator.rgs',
70 '../scripting/content_script_manager.rc', 71 '../scripting/content_script_manager.rc',
71 ], 72 ],
72 'libraries': [ 73 'libraries': [
73 'oleacc.lib', 74 'oleacc.lib',
74 'iepmapi.lib', 75 'iepmapi.lib',
76 'rpcrt4.lib',
75 ], 77 ],
76 'include_dirs': [ 78 'include_dirs': [
77 # Allows us to include .tlb and .h files generated 79 # Allows us to include .tlb and .h files generated
78 # from our .idl without undue trouble 80 # from our .idl without undue trouble
79 '$(IntDir)', 81 '$(IntDir)',
80 # For version.h 82 # For version.h
81 '<(SHARED_INTERMEDIATE_DIR)', 83 '<(SHARED_INTERMEDIATE_DIR)',
82 ], 84 ],
83 'msvs_settings': { 85 'msvs_settings': {
84 'VCLinkerTool': { 86 'VCLinkerTool': {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'DLLDataFileName': '$(InputName)_dlldata.c', 121 'DLLDataFileName': '$(InputName)_dlldata.c',
120 }, 122 },
121 }, 123 },
122 # Add the output dir for those who depend on us. 124 # Add the output dir for those who depend on us.
123 'direct_dependent_settings': { 125 'direct_dependent_settings': {
124 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], 126 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'],
125 }, 127 },
126 }, 128 },
127 ] 129 ]
128 } 130 }
OLDNEW
« no previous file with comments | « ceee/ie/ie.gyp ('k') | ceee/ie/plugin/toolband/toolband_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698