Chromium Code Reviews| 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 'DefaultCharType': '0', | |
|
Sigurður Ásgeirsson
2010/11/19 18:29:30
I think this is worth a short comment? Why is this
Vitaly Buka corp
2010/11/19 20:30:38
Done.
| |
| 23 'AdditionalOptions': '/prefix all "BrokerRpcClient_" ' | 24 'AdditionalOptions': '/prefix all "BrokerRpcClient_" ' |
| 24 'server "BrokerRpcServer_"' | 25 'server "BrokerRpcServer_"' |
| 25 }, | 26 }, |
| 26 }, | 27 }, |
| 27 # Add the output dir for those who depend on us. | 28 # Add the output dir for those who depend on us. |
| 28 'direct_dependent_settings': { | 29 'direct_dependent_settings': { |
| 29 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 30 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 30 }, | 31 }, |
| 31 }, | 32 }, |
| 32 { | 33 { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 143 '<(SHARED_INTERMEDIATE_DIR)', | 144 '<(SHARED_INTERMEDIATE_DIR)', |
| 144 ], | 145 ], |
| 145 'libraries': [ | 146 'libraries': [ |
| 146 'oleacc.lib', | 147 'oleacc.lib', |
| 147 'iepmapi.lib', | 148 'iepmapi.lib', |
| 148 'rpcrt4.lib', | 149 'rpcrt4.lib', |
| 149 ], | 150 ], |
| 150 }, | 151 }, |
| 151 ] | 152 ] |
| 152 } | 153 } |
| OLD | NEW |