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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 }, | 62 }, |
63 }, | 63 }, |
64 'targets': [ | 64 'targets': [ |
65 { | 65 { |
66 'target_name': 'chrome_launcher', | 66 'target_name': 'chrome_launcher', |
67 'type': 'executable', | 67 'type': 'executable', |
68 'msvs_guid': 'B7E540C1-49D9-4350-ACBC-FB8306316D16', | 68 'msvs_guid': 'B7E540C1-49D9-4350-ACBC-FB8306316D16', |
69 'dependencies': [ | 69 'dependencies': [ |
70 '../breakpad/breakpad.gyp:breakpad_handler', | 70 '../breakpad/breakpad.gyp:breakpad_handler', |
71 '../chrome/chrome.gyp:chrome_version_header', | 71 '../chrome/chrome.gyp:chrome_version_header', |
| 72 '../google_update/google_update.gyp:google_update', |
72 'chrome_frame.gyp:chrome_frame_utils', | 73 'chrome_frame.gyp:chrome_frame_utils', |
73 ], | 74 ], |
74 'resource_include_dirs': [ | 75 'resource_include_dirs': [ |
75 '<(INTERMEDIATE_DIR)', | 76 '<(INTERMEDIATE_DIR)', |
76 '<(SHARED_INTERMEDIATE_DIR)', | 77 '<(SHARED_INTERMEDIATE_DIR)', |
77 ], | 78 ], |
78 'sources': [ | 79 'sources': [ |
79 'chrome_launcher_main.cc', | 80 'chrome_launcher_main.cc', |
80 'chrome_launcher_version.rc', | 81 'chrome_launcher_version.rc', |
81 'chrome_launcher.cc', | 82 'chrome_launcher.cc', |
82 'chrome_launcher.h', | 83 'chrome_launcher.h', |
| 84 'update_launcher.cc', |
| 85 'update_launcher.h' |
83 ], | 86 ], |
84 'msvs_settings': { | 87 'msvs_settings': { |
85 'VCLinkerTool': { | 88 'VCLinkerTool': { |
86 'OutputFile': | 89 'OutputFile': |
87 '$(OutDir)\\servers\\$(ProjectName).exe', | 90 '$(OutDir)\\servers\\$(ProjectName).exe', |
88 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 91 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
89 'SubSystem': '2', | 92 'SubSystem': '2', |
90 'AdditionalDependencies': [ | 93 'AdditionalDependencies': [ |
91 'shlwapi.lib', | 94 'shlwapi.lib', |
92 ], | 95 ], |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 165 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
163 'SubSystem': '2', | 166 'SubSystem': '2', |
164 'AdditionalDependencies': [ | 167 'AdditionalDependencies': [ |
165 'shlwapi.lib', | 168 'shlwapi.lib', |
166 ], | 169 ], |
167 }, | 170 }, |
168 }, | 171 }, |
169 }, | 172 }, |
170 ], | 173 ], |
171 } | 174 } |
OLD | NEW |