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', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 51 'Debug': { | 51 'Debug': { |
| 52 'msvs_precompiled_source': '../../common/precompile.cc', | 52 'msvs_precompiled_source': '../../common/precompile.cc', |
| 53 'msvs_precompiled_header': '../../common/precompile.h', | 53 'msvs_precompiled_header': '../../common/precompile.h', |
| 54 }, | 54 }, |
| 55 }, | 55 }, |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'ceee_ie', | 58 'target_name': 'ceee_ie', |
| 59 'type': 'shared_library', | 59 'type': 'shared_library', |
| 60 'dependencies': [ | 60 'dependencies': [ |
| 61 '../../broker/broker.gyp:broker_rpc_lib', | |
| 61 'ceee_ie_lib', | 62 'ceee_ie_lib', |
| 62 'ie_toolband_common', | 63 'ie_toolband_common', |
| 63 'toolband_idl', | 64 'toolband_idl', |
| 64 '../bho/bho.gyp:bho', | 65 '../bho/bho.gyp:bho', |
| 65 '../scripting/scripting.gyp:scripting', | 66 '../scripting/scripting.gyp:scripting', |
| 66 '../../common/common.gyp:ie_common_settings', | 67 '../../common/common.gyp:ie_common_settings', |
| 67 '../../common/common.gyp:ie_guids', | 68 '../../common/common.gyp:ie_guids', |
| 68 '../../../../base/base.gyp:base', | 69 '../../../../base/base.gyp:base', |
| 69 '../../../../breakpad/breakpad.gyp:breakpad_handler', | 70 '../../../../breakpad/breakpad.gyp:breakpad_handler', |
| 70 '../../../../ceee/common/common.gyp:ceee_common', | 71 '../../../../ceee/common/common.gyp:ceee_common', |
| 71 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 72 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 72 ], | 73 ], |
| 73 'sources': [ | 74 'sources': [ |
| 74 '../../common/precompile.cc', | 75 '../../common/precompile.cc', |
| 75 '../../common/precompile.h', | 76 '../../common/precompile.h', |
| 76 'resource.h', | 77 'resource.h', |
| 77 'tool_band.rgs', | 78 'tool_band.rgs', |
| 78 'toolband.def', | 79 'toolband.def', |
| 79 'toolband.rc', | 80 'toolband.rc', |
| 80 'toolband_module.cc', | 81 'toolband_module.cc', |
| 81 '../bho/browser_helper_object.rgs', | 82 '../bho/browser_helper_object.rgs', |
| 82 '../executor.rgs', | 83 '../executor.rgs', |
| 83 '../executor_creator.rgs', | 84 '../executor_creator.rgs', |
| 84 '../scripting/content_script_manager.rc', | 85 '../scripting/content_script_manager.rc', |
| 85 ], | 86 ], |
| 86 'libraries': [ | 87 'libraries': [ |
| 87 'oleacc.lib', | 88 'oleacc.lib', |
| 88 'iepmapi.lib', | 89 'iepmapi.lib', |
| 90 'Rpcrt4.lib', | |
|
Sigurður Ásgeirsson
2010/11/11 19:30:35
ditto.
Vitaly Buka corp
2010/11/11 23:12:10
Done.
| |
| 89 ], | 91 ], |
| 90 'include_dirs': [ | 92 'include_dirs': [ |
| 91 # Allows us to include .tlb and .h files generated | 93 # Allows us to include .tlb and .h files generated |
| 92 # from our .idl without undue trouble | 94 # from our .idl without undue trouble |
| 93 '$(IntDir)', | 95 '$(IntDir)', |
| 94 ], | 96 ], |
| 95 'msvs_settings': { | 97 'msvs_settings': { |
| 96 'VCLinkerTool': { | 98 'VCLinkerTool': { |
| 97 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', | 99 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', |
| 98 }, | 100 }, |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 'DLLDataFileName': '$(InputName)_dlldata.c', | 133 'DLLDataFileName': '$(InputName)_dlldata.c', |
| 132 }, | 134 }, |
| 133 }, | 135 }, |
| 134 # Add the output dir for those who depend on us. | 136 # Add the output dir for those who depend on us. |
| 135 'direct_dependent_settings': { | 137 'direct_dependent_settings': { |
| 136 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 138 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 137 }, | 139 }, |
| 138 }, | 140 }, |
| 139 ] | 141 ] |
| 140 } | 142 } |
| OLD | NEW |