| 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 22 matching lines...) Expand all Loading... |
| 33 'Debug': { | 33 'Debug': { |
| 34 'msvs_precompiled_source': '../../common/precompile.cc', | 34 'msvs_precompiled_source': '../../common/precompile.cc', |
| 35 'msvs_precompiled_header': '../../common/precompile.h', | 35 'msvs_precompiled_header': '../../common/precompile.h', |
| 36 }, | 36 }, |
| 37 }, | 37 }, |
| 38 }, | 38 }, |
| 39 { | 39 { |
| 40 'target_name': 'ceee_ie', | 40 'target_name': 'ceee_ie', |
| 41 'type': 'shared_library', | 41 'type': 'shared_library', |
| 42 'dependencies': [ | 42 'dependencies': [ |
| 43 '../../broker/broker.gyp:broker_rpc_lib', |
| 43 'ceee_ie_lib', | 44 'ceee_ie_lib', |
| 44 'ie_toolband_common', | 45 'ie_toolband_common', |
| 45 'toolband_idl', | 46 'toolband_idl', |
| 46 '../bho/bho.gyp:bho', | 47 '../bho/bho.gyp:bho', |
| 47 '../scripting/scripting.gyp:scripting', | 48 '../scripting/scripting.gyp:scripting', |
| 48 '../../common/common.gyp:ie_common_settings', | 49 '../../common/common.gyp:ie_common_settings', |
| 49 '../../common/common.gyp:ie_guids', | 50 '../../common/common.gyp:ie_guids', |
| 50 '../../../../base/base.gyp:base', | 51 '../../../../base/base.gyp:base', |
| 51 '../../../../breakpad/breakpad.gyp:breakpad_handler', | 52 '../../../../breakpad/breakpad.gyp:breakpad_handler', |
| 52 '../../../../ceee/common/common.gyp:ceee_common', | 53 '../../../../ceee/common/common.gyp:ceee_common', |
| 53 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 54 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 54 ], | 55 ], |
| 55 'sources': [ | 56 'sources': [ |
| 56 '../../common/precompile.cc', | 57 '../../common/precompile.cc', |
| 57 '../../common/precompile.h', | 58 '../../common/precompile.h', |
| 58 'resource.h', | 59 'resource.h', |
| 59 'tool_band.rgs', | 60 'tool_band.rgs', |
| 60 'toolband.def', | 61 'toolband.def', |
| 61 'toolband.rc', | 62 'toolband.rc', |
| 62 'toolband_module.cc', | 63 'toolband_module.cc', |
| 63 '../bho/browser_helper_object.rgs', | 64 '../bho/browser_helper_object.rgs', |
| 64 '../executor.rgs', | 65 '../executor.rgs', |
| 65 '../executor_creator.rgs', | 66 '../executor_creator.rgs', |
| 66 '../scripting/content_script_manager.rc', | 67 '../scripting/content_script_manager.rc', |
| 67 ], | 68 ], |
| 68 'libraries': [ | 69 'libraries': [ |
| 69 'oleacc.lib', | 70 'oleacc.lib', |
| 70 'iepmapi.lib', | 71 'iepmapi.lib', |
| 72 'rpcrt4.lib', |
| 71 ], | 73 ], |
| 72 'include_dirs': [ | 74 'include_dirs': [ |
| 73 # Allows us to include .tlb and .h files generated | 75 # Allows us to include .tlb and .h files generated |
| 74 # from our .idl without undue trouble | 76 # from our .idl without undue trouble |
| 75 '$(IntDir)', | 77 '$(IntDir)', |
| 76 ], | 78 ], |
| 77 'msvs_settings': { | 79 'msvs_settings': { |
| 78 'VCLinkerTool': { | 80 'VCLinkerTool': { |
| 79 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', | 81 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', |
| 80 }, | 82 }, |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'DLLDataFileName': '$(InputName)_dlldata.c', | 115 'DLLDataFileName': '$(InputName)_dlldata.c', |
| 114 }, | 116 }, |
| 115 }, | 117 }, |
| 116 # Add the output dir for those who depend on us. | 118 # Add the output dir for those who depend on us. |
| 117 'direct_dependent_settings': { | 119 'direct_dependent_settings': { |
| 118 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 120 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 119 }, | 121 }, |
| 120 }, | 122 }, |
| 121 ] | 123 ] |
| 122 } | 124 } |
| OLD | NEW |