| 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 15 matching lines...) Expand all Loading... |
| 26 'tool_band.h', | 26 'tool_band.h', |
| 27 ], | 27 ], |
| 28 'libraries': [ | 28 'libraries': [ |
| 29 'oleacc.lib', | 29 'oleacc.lib', |
| 30 'iepmapi.lib', | 30 'iepmapi.lib', |
| 31 ], | 31 ], |
| 32 'include_dirs': [ | 32 'include_dirs': [ |
| 33 # For chrome_tab.h | 33 # For chrome_tab.h |
| 34 '<(SHARED_INTERMEDIATE_DIR)', | 34 '<(SHARED_INTERMEDIATE_DIR)', |
| 35 ], | 35 ], |
| 36 'configurations': { | |
| 37 'Debug': { | |
| 38 'msvs_precompiled_source': '../../common/precompile.cc', | |
| 39 'msvs_precompiled_header': '../../common/precompile.h', | |
| 40 }, | |
| 41 }, | |
| 42 }, | 36 }, |
| 43 { | 37 { |
| 44 'target_name': 'ceee_ie', | 38 'target_name': 'ceee_ie', |
| 45 'type': 'shared_library', | 39 'type': 'shared_library', |
| 46 'dependencies': [ | 40 'dependencies': [ |
| 47 '../../broker/broker.gyp:broker_rpc_lib', | 41 '../../broker/broker.gyp:broker_rpc_lib', |
| 48 'ceee_ie_lib', | 42 'ceee_ie_lib', |
| 49 'ie_toolband_common', | 43 'ie_toolband_common', |
| 50 'toolband_idl', | 44 'toolband_idl', |
| 51 '../bho/bho.gyp:bho', | 45 '../bho/bho.gyp:bho', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 80 # from our .idl without undue trouble | 74 # from our .idl without undue trouble |
| 81 '$(IntDir)', | 75 '$(IntDir)', |
| 82 # For version.h | 76 # For version.h |
| 83 '<(SHARED_INTERMEDIATE_DIR)', | 77 '<(SHARED_INTERMEDIATE_DIR)', |
| 84 ], | 78 ], |
| 85 'msvs_settings': { | 79 'msvs_settings': { |
| 86 'VCLinkerTool': { | 80 'VCLinkerTool': { |
| 87 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', | 81 'OutputFile': '$(OutDir)/servers/$(ProjectName).dll', |
| 88 }, | 82 }, |
| 89 }, | 83 }, |
| 90 'configurations': { | |
| 91 'Debug': { | |
| 92 'msvs_precompiled_source': '../../common/precompile.cc', | |
| 93 'msvs_precompiled_header': '../../common/precompile.h', | |
| 94 }, | |
| 95 }, | |
| 96 }, | 84 }, |
| 97 { | 85 { |
| 98 'target_name': 'ie_toolband_common', | 86 'target_name': 'ie_toolband_common', |
| 99 'type': 'static_library', | 87 'type': 'static_library', |
| 100 'dependencies': [ | 88 'dependencies': [ |
| 101 '../../../../chrome_frame/crash_reporting/' | 89 '../../../../chrome_frame/crash_reporting/' |
| 102 'crash_reporting.gyp:crash_report', | 90 'crash_reporting.gyp:crash_report', |
| 103 '../../../../base/base.gyp:base', | 91 '../../../../base/base.gyp:base', |
| 104 '../../../../breakpad/breakpad.gyp:breakpad_handler', | 92 '../../../../breakpad/breakpad.gyp:breakpad_handler', |
| 105 ], | 93 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 121 'DLLDataFileName': '$(InputName)_dlldata.c', | 109 'DLLDataFileName': '$(InputName)_dlldata.c', |
| 122 }, | 110 }, |
| 123 }, | 111 }, |
| 124 # Add the output dir for those who depend on us. | 112 # Add the output dir for those who depend on us. |
| 125 'direct_dependent_settings': { | 113 'direct_dependent_settings': { |
| 126 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 114 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 127 }, | 115 }, |
| 128 }, | 116 }, |
| 129 ] | 117 ] |
| 130 } | 118 } |
| OLD | NEW |