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

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

Issue 4989002: Firing event to broker without worker thread. (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
« no previous file with comments | « ceee/ie/broker/broker.cc ('k') | ceee/ie/broker/broker_lib.idl » ('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', 14 'target_name': 'broker_rpc_idl',
15 'type': 'none', 15 'type': 'none',
16 'sources': [ 16 'sources': [
17 'broker_rpc_lib.idl', 17 'broker_rpc_lib.idl',
18 ], 18 ],
19 'msvs_settings': { 19 'msvs_settings': {
20 'VCMIDLTool': { 20 'VCMIDLTool': {
21 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)', 21 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)',
22 'DLLDataFileName': '$(InputName)_dlldata.c', 22 'DLLDataFileName': '$(InputName)_dlldata.c',
23 # Prevent middle to insert 'unsigned' before 'char' in generated
24 # *.h and *.c files.
25 'DefaultCharType': '0',
23 'AdditionalOptions': '/prefix all "BrokerRpcClient_" ' 26 'AdditionalOptions': '/prefix all "BrokerRpcClient_" '
24 'server "BrokerRpcServer_"' 27 'server "BrokerRpcServer_"'
25 }, 28 },
26 }, 29 },
27 # Add the output dir for those who depend on us. 30 # Add the output dir for those who depend on us.
28 'direct_dependent_settings': { 31 'direct_dependent_settings': {
29 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], 32 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'],
30 }, 33 },
31 }, 34 },
32 { 35 {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 '<(SHARED_INTERMEDIATE_DIR)', 146 '<(SHARED_INTERMEDIATE_DIR)',
144 ], 147 ],
145 'libraries': [ 148 'libraries': [
146 'oleacc.lib', 149 'oleacc.lib',
147 'iepmapi.lib', 150 'iepmapi.lib',
148 'rpcrt4.lib', 151 'rpcrt4.lib',
149 ], 152 ],
150 }, 153 },
151 ] 154 ]
152 } 155 }
OLDNEW
« no previous file with comments | « ceee/ie/broker/broker.cc ('k') | ceee/ie/broker/broker_lib.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698