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', | |
| 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_" server "BrokerRpc Server_"' | |
| 24 }, | |
| 25 }, | |
| 26 # Add the output dir for those who depend on us. | |
| 27 'direct_dependent_settings': { | |
| 28 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | |
| 29 }, | |
| 30 }, | |
| 31 { | |
| 32 'target_name': 'broker_rpc_lib', | |
| 33 'type': 'static_library', | |
| 34 'dependencies': [ | |
| 35 'broker_rpc_idl', | |
| 36 ], | |
| 37 'sources': [ | |
| 38 'broker_rpc_server.c', | |
|
Sigurður Ásgeirsson
2010/11/05 16:05:59
'<(SHARED_INTERMEDIATE_DIR)/broker_rpc_server.c' ?
Vitaly Buka corp
2010/11/11 01:31:02
I already tried. it is silently create projects wi
| |
| 39 'broker_rpc_client.c', | |
| 40 ], | |
| 41 'msvs_settings': { | |
| 42 'VCCLCompilerTool': { | |
| 43 'UsePrecompiledHeader': '0', | |
| 44 'ForcedIncludeFiles': '$(NOINHERIT)', | |
| 45 }, | |
| 46 }, | |
| 47 }, | |
| 48 { | |
| 14 'target_name': 'broker', | 49 'target_name': 'broker', |
| 15 'type': 'static_library', | 50 'type': 'static_library', |
| 16 'dependencies': [ | 51 'dependencies': [ |
| 52 'broker_rpc_idl', | |
| 17 '../common/common.gyp:ie_common', | 53 '../common/common.gyp:ie_common', |
| 18 '../common/common.gyp:ie_common_settings', | 54 '../common/common.gyp:ie_common_settings', |
| 19 '../plugin/toolband/toolband.gyp:toolband_idl', | 55 '../plugin/toolband/toolband.gyp:toolband_idl', |
| 20 '../../../base/base.gyp:base', | 56 '../../../base/base.gyp:base', |
| 21 '../../../build/temp_gyp/googleurl.gyp:googleurl', | 57 '../../../build/temp_gyp/googleurl.gyp:googleurl', |
| 22 '../../../ceee/common/common.gyp:initializing_coclass', | 58 '../../../ceee/common/common.gyp:initializing_coclass', |
| 23 '../../../ceee/common/common.gyp:ceee_common', | 59 '../../../ceee/common/common.gyp:ceee_common', |
| 24 ], | 60 ], |
| 25 'sources': [ | 61 'sources': [ |
| 26 'api_dispatcher.cc', | 62 'api_dispatcher.cc', |
| 27 'api_dispatcher.h', | 63 'api_dispatcher.h', |
| 28 'api_dispatcher_docs.h', | 64 'api_dispatcher_docs.h', |
| 29 'api_module_constants.cc', | 65 'api_module_constants.cc', |
| 30 'api_module_constants.h', | 66 'api_module_constants.h', |
| 31 'api_module_util.cc', | 67 'api_module_util.cc', |
| 32 'api_module_util.h', | 68 'api_module_util.h', |
| 33 'broker.cc', | 69 'broker.cc', |
| 34 'broker.h', | 70 'broker.h', |
| 35 'broker_docs.h', | 71 'broker_docs.h', |
| 72 'broker_rpc_client.cc', | |
| 73 'broker_rpc_client.h', | |
| 74 'broker_rpc_server.cc', | |
| 75 'broker_rpc_server.h', | |
| 76 'broker_rpc_utils.cc', | |
| 77 'broker_rpc_utils.h', | |
| 36 'chrome_postman.cc', | 78 'chrome_postman.cc', |
| 37 'chrome_postman.h', | 79 'chrome_postman.h', |
| 38 'common_api_module.cc', | 80 'common_api_module.cc', |
| 39 'common_api_module.h', | 81 'common_api_module.h', |
| 40 'cookie_api_module.cc', | 82 'cookie_api_module.cc', |
| 41 'cookie_api_module.h', | 83 'cookie_api_module.h', |
| 42 'event_dispatching_docs.h', | 84 'event_dispatching_docs.h', |
| 43 'executors_manager.cc', | 85 'executors_manager.cc', |
| 44 'executors_manager.h', | 86 'executors_manager.h', |
| 45 'executors_manager_docs.h', | 87 'executors_manager_docs.h', |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 73 'sources': [ | 115 'sources': [ |
| 74 'broker.rgs', | 116 'broker.rgs', |
| 75 'broker_module.cc', | 117 'broker_module.cc', |
| 76 'broker_module.rc', | 118 'broker_module.rc', |
| 77 'broker_module.rgs', | 119 'broker_module.rgs', |
| 78 'broker_module_util.h', | 120 'broker_module_util.h', |
| 79 'resource.h' | 121 'resource.h' |
| 80 ], | 122 ], |
| 81 'dependencies': [ | 123 'dependencies': [ |
| 82 'broker', | 124 'broker', |
| 125 'broker_rpc_lib', | |
| 83 '../common/common.gyp:ie_common_settings', | 126 '../common/common.gyp:ie_common_settings', |
| 84 '../common/common.gyp:ie_guids', | 127 '../common/common.gyp:ie_guids', |
| 85 '../plugin/toolband/toolband.gyp:toolband_idl', | 128 '../plugin/toolband/toolband.gyp:toolband_idl', |
| 86 '../../../base/base.gyp:base', | 129 '../../../base/base.gyp:base', |
| 87 '../../../breakpad/breakpad.gyp:breakpad_handler', | 130 '../../../breakpad/breakpad.gyp:breakpad_handler', |
| 88 '../../../ceee/common/common.gyp:ceee_common', | 131 '../../../ceee/common/common.gyp:ceee_common', |
| 89 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 132 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 90 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs. | 133 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_frame_ie', # for GUIDs. |
| 91 ], | 134 ], |
| 92 'msvs_settings': { | 135 'msvs_settings': { |
| 93 'VCLinkerTool': { | 136 'VCLinkerTool': { |
| 94 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe', | 137 'OutputFile': '$(OutDir)/servers/$(ProjectName).exe', |
| 95 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 138 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
| 96 'SubSystem': '2', | 139 'SubSystem': '2', |
| 97 }, | 140 }, |
| 98 }, | 141 }, |
| 99 'libraries': [ | 142 'libraries': [ |
| 100 'oleacc.lib', | 143 'oleacc.lib', |
| 101 'iepmapi.lib', | 144 'iepmapi.lib', |
| 145 'Rpcrt4.lib', | |
| 102 ], | 146 ], |
| 103 }, | 147 }, |
| 104 ] | 148 ] |
| 105 } | 149 } |
| OLD | NEW |