OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Keep the archive builder happy. | 9 # Keep the archive builder happy. |
10 'chrome_personalization%': 1, | 10 'chrome_personalization%': 1, |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 'chrome_frame_helper_dll.def', | 162 'chrome_frame_helper_dll.def', |
163 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_frame_helper_dll_version
.rc', | 163 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_frame_helper_dll_version
.rc', |
164 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', | 164 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', |
165 'event_hooker.cc', | 165 'event_hooker.cc', |
166 'event_hooker.h', | 166 'event_hooker.h', |
167 'iids.cc', | 167 'iids.cc', |
168 ], | 168 ], |
169 'msvs_settings': { | 169 'msvs_settings': { |
170 'VCLinkerTool': { | 170 'VCLinkerTool': { |
171 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', | 171 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', |
172 'ProgramDatabaseFile': '$(OutDir)\\chrome_frame_helper_dll.pdb', | |
173 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 172 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
174 'SubSystem': '2', | 173 'SubSystem': '2', |
175 }, | 174 }, |
176 }, | 175 }, |
177 }, | 176 }, |
178 { | 177 { |
179 'target_name': 'chrome_frame_helper_lib', | 178 'target_name': 'chrome_frame_helper_lib', |
180 'type': 'static_library', | 179 'type': 'static_library', |
181 'dependencies': [ | 180 'dependencies': [ |
182 'chrome_frame.gyp:chrome_tab_idl', | 181 'chrome_frame.gyp:chrome_tab_idl', |
183 ], | 182 ], |
184 'sources': [ | 183 'sources': [ |
185 'chrome_frame_helper_util.cc', | 184 'chrome_frame_helper_util.cc', |
186 'chrome_frame_helper_util.h', | 185 'chrome_frame_helper_util.h', |
187 'registry_watcher.cc', | 186 'registry_watcher.cc', |
188 'registry_watcher.h', | 187 'registry_watcher.h', |
189 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', | 188 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', |
190 'iids.cc', | 189 'iids.cc', |
191 ], | 190 ], |
192 'msvs_settings': { | 191 'msvs_settings': { |
193 'VCLinkerTool': { | 192 'VCLinkerTool': { |
194 'AdditionalDependencies': [ | 193 'AdditionalDependencies': [ |
195 'shlwapi.lib', | 194 'shlwapi.lib', |
196 ], | 195 ], |
197 }, | 196 }, |
198 }, | 197 }, |
199 }, | 198 }, |
200 ], | 199 ], |
201 } | 200 } |
OLD | NEW |