| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |