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

Side by Side Diff: ceee/ie/broker/broker.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/broker/broker.cc ('k') | ceee/ie/broker/broker_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',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'broker_rpc_idl',
15 'type': 'none',
16 'sources': [
17 'broker_rpc_lib.idl',
18 ],
19 'msvs_settings': {
20 'VCMIDLTool': {
21 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)',
22 'DLLDataFileName': '$(InputName)_dlldata.c',
23 'AdditionalOptions': '/prefix all "BrokerRpcClient_" '
24 'server "BrokerRpcServer_"'
25 },
26 },
27 # Add the output dir for those who depend on us.
28 'direct_dependent_settings': {
29 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'],
30 },
31 },
32 {
33 'target_name': 'broker_rpc_lib',
34 'type': 'static_library',
35 'dependencies': [
36 'broker_rpc_idl',
37 ],
38 'sources': [
39 '<(SHARED_INTERMEDIATE_DIR)/broker_rpc_lib_c.c',
40 '<(SHARED_INTERMEDIATE_DIR)/broker_rpc_lib_s.c',
41 ],
42 'msvs_settings': {
43 'VCCLCompilerTool': {
44 'UsePrecompiledHeader': '0',
45 'ForcedIncludeFiles': '$(NOINHERIT)',
46 },
47 },
48 },
49 {
14 'target_name': 'broker', 50 'target_name': 'broker',
15 'type': 'static_library', 51 'type': 'static_library',
16 'dependencies': [ 52 'dependencies': [
53 'broker_rpc_idl',
17 '../common/common.gyp:ie_common', 54 '../common/common.gyp:ie_common',
18 '../common/common.gyp:ie_common_settings', 55 '../common/common.gyp:ie_common_settings',
19 '../plugin/toolband/toolband.gyp:toolband_idl', 56 '../plugin/toolband/toolband.gyp:toolband_idl',
20 '../../../base/base.gyp:base', 57 '../../../base/base.gyp:base',
21 '../../../build/temp_gyp/googleurl.gyp:googleurl', 58 '../../../build/temp_gyp/googleurl.gyp:googleurl',
22 '../../../ceee/common/common.gyp:initializing_coclass', 59 '../../../ceee/common/common.gyp:initializing_coclass',
23 '../../../ceee/common/common.gyp:ceee_common', 60 '../../../ceee/common/common.gyp:ceee_common',
24 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', 61 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl',
25 ], 62 ],
26 'sources': [ 63 'sources': [
27 'api_dispatcher.cc', 64 'api_dispatcher.cc',
28 'api_dispatcher.h', 65 'api_dispatcher.h',
29 'api_dispatcher_docs.h', 66 'api_dispatcher_docs.h',
30 'api_module_constants.cc', 67 'api_module_constants.cc',
31 'api_module_constants.h', 68 'api_module_constants.h',
32 'api_module_util.cc', 69 'api_module_util.cc',
33 'api_module_util.h', 70 'api_module_util.h',
34 'broker.cc', 71 'broker.cc',
35 'broker.h', 72 'broker.h',
36 'broker_docs.h', 73 'broker_docs.h',
74 'broker_rpc_client.cc',
75 'broker_rpc_client.h',
76 'broker_rpc_server.cc',
77 'broker_rpc_server.h',
78 'broker_rpc_utils.cc',
79 'broker_rpc_utils.h',
37 'chrome_postman.cc', 80 'chrome_postman.cc',
38 'chrome_postman.h', 81 'chrome_postman.h',
39 'common_api_module.cc', 82 'common_api_module.cc',
40 'common_api_module.h', 83 'common_api_module.h',
41 'cookie_api_module.cc', 84 'cookie_api_module.cc',
42 'cookie_api_module.h', 85 'cookie_api_module.h',
43 'event_dispatching_docs.h', 86 'event_dispatching_docs.h',
44 'executors_manager.cc', 87 'executors_manager.cc',
45 'executors_manager.h', 88 'executors_manager.h',
46 'executors_manager_docs.h', 89 'executors_manager_docs.h',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'sources': [ 121 'sources': [
79 'broker.rgs', 122 'broker.rgs',
80 'broker_module.cc', 123 'broker_module.cc',
81 'broker_module.rc', 124 'broker_module.rc',
82 'broker_module.rgs', 125 'broker_module.rgs',
83 'broker_module_util.h', 126 'broker_module_util.h',
84 'resource.h' 127 'resource.h'
85 ], 128 ],
86 'dependencies': [ 129 'dependencies': [
87 'broker', 130 'broker',
131 'broker_rpc_lib',
88 '../common/common.gyp:ie_common_settings', 132 '../common/common.gyp:ie_common_settings',
89 '../common/common.gyp:ie_guids', 133 '../common/common.gyp:ie_guids',
90 '../plugin/toolband/toolband.gyp:toolband_idl', 134 '../plugin/toolband/toolband.gyp:toolband_idl',
91 '../../../base/base.gyp:base', 135 '../../../base/base.gyp:base',
92 '../../../breakpad/breakpad.gyp:breakpad_handler', 136 '../../../breakpad/breakpad.gyp:breakpad_handler',
93 '../../../ceee/common/common.gyp:ceee_common', 137 '../../../ceee/common/common.gyp:ceee_common',
94 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', 138 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header',
95 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs. 139 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs.
96 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', 140 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl',
97 ], 141 ],
98 'msvs_settings': { 142 'msvs_settings': {
99 'VCLinkerTool': { 143 'VCLinkerTool': {
100 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe', 144 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe',
101 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. 145 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program.
102 'SubSystem': '2', 146 'SubSystem': '2',
103 }, 147 },
104 }, 148 },
105 'include_dirs': [ 149 'include_dirs': [
106 # For version.h 150 # For version.h
107 '<(SHARED_INTERMEDIATE_DIR)', 151 '<(SHARED_INTERMEDIATE_DIR)',
108 ], 152 ],
109 'libraries': [ 153 'libraries': [
110 'oleacc.lib', 154 'oleacc.lib',
111 'iepmapi.lib', 155 'iepmapi.lib',
156 'rpcrt4.lib',
112 ], 157 ],
113 }, 158 },
114 ] 159 ]
115 } 160 }
OLDNEW
« no previous file with comments | « ceee/ie/broker/broker.cc ('k') | ceee/ie/broker/broker_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698