| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'sources': [ | 75 'sources': [ |
| 76 'chrome_launcher_main.cc', | 76 'chrome_launcher_main.cc', |
| 77 'chrome_launcher_version.rc', | 77 'chrome_launcher_version.rc', |
| 78 'chrome_launcher.cc', | 78 'chrome_launcher.cc', |
| 79 'chrome_launcher.h', | 79 'chrome_launcher.h', |
| 80 'update_launcher.cc', | 80 'update_launcher.cc', |
| 81 'update_launcher.h' | 81 'update_launcher.h' |
| 82 ], | 82 ], |
| 83 'msvs_settings': { | 83 'msvs_settings': { |
| 84 'VCLinkerTool': { | 84 'VCLinkerTool': { |
| 85 'OutputFile': | |
| 86 '$(OutDir)\\servers\\$(ProjectName).exe', | |
| 87 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 85 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
| 88 'SubSystem': '2', | 86 'SubSystem': '2', |
| 89 'AdditionalDependencies': [ | 87 'AdditionalDependencies': [ |
| 90 'shlwapi.lib', | 88 'shlwapi.lib', |
| 91 ], | 89 ], |
| 92 }, | 90 }, |
| 93 }, | 91 }, |
| 94 }, | 92 }, |
| 95 { | 93 { |
| 96 'target_name': 'chrome_frame_helper', | 94 'target_name': 'chrome_frame_helper', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 'msvs_settings': { | 186 'msvs_settings': { |
| 189 'VCLinkerTool': { | 187 'VCLinkerTool': { |
| 190 'AdditionalDependencies': [ | 188 'AdditionalDependencies': [ |
| 191 'shlwapi.lib', | 189 'shlwapi.lib', |
| 192 ], | 190 ], |
| 193 }, | 191 }, |
| 194 }, | 192 }, |
| 195 }, | 193 }, |
| 196 ], | 194 ], |
| 197 } | 195 } |
| OLD | NEW |