| 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 # Keep the archive builder happy. | 9 # Keep the archive builder happy. |
| 10 'chrome_personalization%': 1, | 10 'chrome_personalization%': 1, |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 '<(INTERMEDIATE_DIR)/../chrome_frame', | 145 '<(INTERMEDIATE_DIR)/../chrome_frame', |
| 146 ], | 146 ], |
| 147 'sources': [ | 147 'sources': [ |
| 148 'bho_loader.cc', | 148 'bho_loader.cc', |
| 149 'bho_loader.h', | 149 'bho_loader.h', |
| 150 'chrome_frame_helper_dll.cc', | 150 'chrome_frame_helper_dll.cc', |
| 151 'chrome_frame_helper_dll.def', | 151 'chrome_frame_helper_dll.def', |
| 152 'chrome_frame_helper_util.cc', | 152 'chrome_frame_helper_util.cc', |
| 153 'chrome_frame_helper_util.h', | 153 'chrome_frame_helper_util.h', |
| 154 'chrome_frame_helper_version.rc', | 154 'chrome_frame_helper_version.rc', |
| 155 'chrome_tab.h', | 155 '<(SHARED_INTERMEDIATE_DIR)/chrome_tab.h', |
| 156 'chrome_tab.idl', | |
| 157 'event_hooker.cc', | 156 'event_hooker.cc', |
| 158 'event_hooker.h', | 157 'event_hooker.h', |
| 159 'iids.cc', | 158 'iids.cc', |
| 160 ], | 159 ], |
| 161 'msvs_settings': { | 160 'msvs_settings': { |
| 162 'VCLinkerTool': { | 161 'VCLinkerTool': { |
| 163 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', | 162 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', |
| 164 'ProgramDatabaseFile': '$(OutDir)\\chrome_frame_helper_dll.pdb', | 163 'ProgramDatabaseFile': '$(OutDir)\\chrome_frame_helper_dll.pdb', |
| 165 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 164 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
| 166 'SubSystem': '2', | 165 'SubSystem': '2', |
| 167 'AdditionalDependencies': [ | 166 'AdditionalDependencies': [ |
| 168 'shlwapi.lib', | 167 'shlwapi.lib', |
| 169 ], | 168 ], |
| 170 }, | 169 }, |
| 171 }, | 170 }, |
| 172 }, | 171 }, |
| 173 ], | 172 ], |
| 174 } | 173 } |
| OLD | NEW |