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

Side by Side Diff: ceee/ie/broker/broker.gyp

Issue 4508002: COM replaced with RPC for firing events in broker. (Closed) Base URL: svn://svn.chromium.org/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
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 ], 61 ],
25 'sources': [ 62 'sources': [
26 'api_dispatcher.cc', 63 'api_dispatcher.cc',
27 'api_dispatcher.h', 64 'api_dispatcher.h',
28 'api_dispatcher_docs.h', 65 'api_dispatcher_docs.h',
29 'api_module_constants.cc', 66 'api_module_constants.cc',
30 'api_module_constants.h', 67 'api_module_constants.h',
31 'api_module_util.cc', 68 'api_module_util.cc',
32 'api_module_util.h', 69 'api_module_util.h',
33 'broker.cc', 70 'broker.cc',
34 'broker.h', 71 'broker.h',
35 'broker_docs.h', 72 'broker_docs.h',
73 'broker_rpc_client.cc',
74 'broker_rpc_client.h',
75 'broker_rpc_server.cc',
76 'broker_rpc_server.h',
77 'broker_rpc_utils.cc',
78 'broker_rpc_utils.h',
36 'chrome_postman.cc', 79 'chrome_postman.cc',
37 'chrome_postman.h', 80 'chrome_postman.h',
38 'common_api_module.cc', 81 'common_api_module.cc',
39 'common_api_module.h', 82 'common_api_module.h',
40 'cookie_api_module.cc', 83 'cookie_api_module.cc',
41 'cookie_api_module.h', 84 'cookie_api_module.h',
42 'event_dispatching_docs.h', 85 'event_dispatching_docs.h',
43 'executors_manager.cc', 86 'executors_manager.cc',
44 'executors_manager.h', 87 'executors_manager.h',
45 'executors_manager_docs.h', 88 'executors_manager_docs.h',
(...skipping 27 matching lines...) Expand all
73 'sources': [ 116 'sources': [
74 'broker.rgs', 117 'broker.rgs',
75 'broker_module.cc', 118 'broker_module.cc',
76 'broker_module.rc', 119 'broker_module.rc',
77 'broker_module.rgs', 120 'broker_module.rgs',
78 'broker_module_util.h', 121 'broker_module_util.h',
79 'resource.h' 122 'resource.h'
80 ], 123 ],
81 'dependencies': [ 124 'dependencies': [
82 'broker', 125 'broker',
126 'broker_rpc_lib',
83 '../common/common.gyp:ie_common_settings', 127 '../common/common.gyp:ie_common_settings',
84 '../common/common.gyp:ie_guids', 128 '../common/common.gyp:ie_guids',
85 '../plugin/toolband/toolband.gyp:toolband_idl', 129 '../plugin/toolband/toolband.gyp:toolband_idl',
86 '../../../base/base.gyp:base', 130 '../../../base/base.gyp:base',
87 '../../../breakpad/breakpad.gyp:breakpad_handler', 131 '../../../breakpad/breakpad.gyp:breakpad_handler',
88 '../../../ceee/common/common.gyp:ceee_common', 132 '../../../ceee/common/common.gyp:ceee_common',
89 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', 133 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header',
90 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs. 134 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs.
91 ], 135 ],
92 'msvs_settings': { 136 'msvs_settings': {
93 'VCLinkerTool': { 137 'VCLinkerTool': {
94 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe', 138 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe',
95 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. 139 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program.
96 'SubSystem': '2', 140 'SubSystem': '2',
97 }, 141 },
98 }, 142 },
99 'libraries': [ 143 'libraries': [
100 'oleacc.lib', 144 'oleacc.lib',
101 'iepmapi.lib', 145 'iepmapi.lib',
146 'rpcrt4.lib',
102 ], 147 ],
103 }, 148 },
104 ] 149 ]
105 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698