| 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 # This target builds Chrome Frame's IDL file to our | |
| 15 # shared intermediate directory | |
| 16 'target_name': 'chrome_tab_idl', | |
| 17 'type': 'none', | |
| 18 'msvs_settings': { | |
| 19 'VCMIDLTool': { | |
| 20 'OutputDirectory': '<(SHARED_INTERMEDIATE_DIR)', | |
| 21 }, | |
| 22 }, | |
| 23 'sources': [ | |
| 24 '../../../../chrome_frame/chrome_tab.idl', | |
| 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': 'ceee_ie_lib', | 14 'target_name': 'ceee_ie_lib', |
| 33 'type': 'static_library', | 15 'type': 'static_library', |
| 34 'dependencies': [ | 16 'dependencies': [ |
| 35 'chrome_tab_idl', | 17 '<(DEPTH)/chrome_frame/chrome_frame.gyp:chrome_tab_idl', |
| 36 '../../common/common.gyp:ie_common_settings', | 18 '../../common/common.gyp:ie_common_settings', |
| 37 '../../../../base/base.gyp:base', | 19 '../../../../base/base.gyp:base', |
| 38 '../../../../ceee/common/common.gyp:ceee_common', | 20 '../../../../ceee/common/common.gyp:ceee_common', |
| 39 ], | 21 ], |
| 40 'sources': [ | 22 'sources': [ |
| 41 '../../common/precompile.cc', | 23 '../../common/precompile.cc', |
| 42 '../../common/precompile.h', | 24 '../../common/precompile.h', |
| 43 'tool_band.cc', | 25 'tool_band.cc', |
| 44 'tool_band.h', | 26 'tool_band.h', |
| 45 ], | 27 ], |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 'DLLDataFileName': '$(InputName)_dlldata.c', | 113 'DLLDataFileName': '$(InputName)_dlldata.c', |
| 132 }, | 114 }, |
| 133 }, | 115 }, |
| 134 # Add the output dir for those who depend on us. | 116 # Add the output dir for those who depend on us. |
| 135 'direct_dependent_settings': { | 117 'direct_dependent_settings': { |
| 136 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], | 118 'include_dirs': ['<(SHARED_INTERMEDIATE_DIR)'], |
| 137 }, | 119 }, |
| 138 }, | 120 }, |
| 139 ] | 121 ] |
| 140 } | 122 } |
| OLD | NEW |