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 'lastchange_path': '../build/util/LASTCHANGE', | 7 'lastchange_path': '../build/util/LASTCHANGE', |
8 'libpeer_target_type%': 'static_library', | 8 'libpeer_target_type%': 'static_library', |
9 # 'branding_dir' is set in the 'conditions' section at the bottom. | 9 # 'branding_dir' is set in the 'conditions' section at the bottom. |
10 }, | 10 }, |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 }, | 204 }, |
205 'dependencies': [ | 205 'dependencies': [ |
206 '<(DEPTH)/base/base.gyp:base', | 206 '<(DEPTH)/base/base.gyp:base', |
207 ], | 207 ], |
208 'sources': [ | 208 'sources': [ |
209 'installer/launcher_support/chrome_launcher_support.cc', | 209 'installer/launcher_support/chrome_launcher_support.cc', |
210 'installer/launcher_support/chrome_launcher_support.h', | 210 'installer/launcher_support/chrome_launcher_support.h', |
211 ], | 211 ], |
212 }, | 212 }, |
213 { | 213 { |
214 'target_name': 'mini_installer_test', | |
215 'type': 'executable', | |
216 'dependencies': [ | |
217 'installer_util', | |
218 'installer_util_strings', | |
219 '../base/base.gyp:base', | |
220 '../base/base.gyp:base_i18n', | |
221 '../base/base.gyp:test_support_base', | |
222 '../chrome/chrome.gyp:test_support_common', | |
223 '../testing/gtest.gyp:gtest', | |
224 ], | |
225 'include_dirs': [ | |
226 '..', | |
227 ], | |
228 'sources': [ | |
229 '<(SHARED_INTERMEDIATE_DIR)/installer_util_strings/installer_util_st
rings.rc', | |
230 'installer/util/installation_validation_helper.cc', | |
231 'installer/util/installation_validation_helper.h', | |
232 'test/mini_installer_test/installer_path_provider.cc', | |
233 'test/mini_installer_test/installer_path_provider.h', | |
234 'test/mini_installer_test/installer_test_util.cc', | |
235 'test/mini_installer_test/installer_test_util.h', | |
236 'test/mini_installer_test/mini_installer_test_constants.cc', | |
237 'test/mini_installer_test/mini_installer_test_constants.h', | |
238 'test/mini_installer_test/run_all_unittests.cc', | |
239 'test/mini_installer_test/switch_builder.cc', | |
240 'test/mini_installer_test/switch_builder.h', | |
241 'test/mini_installer_test/test.cc', | |
242 ], | |
243 'msvs_settings': { | |
244 'VCManifestTool': { | |
245 'AdditionalManifestFiles': [ | |
246 '$(ProjectDir)\\installer\\mini_installer\\mini_installer.exe.ma
nifest', | |
247 ], | |
248 }, | |
249 }, | |
250 }, | |
251 { | |
252 'target_name': 'setup', | 214 'target_name': 'setup', |
253 'type': 'executable', | 215 'type': 'executable', |
254 'dependencies': [ | 216 'dependencies': [ |
255 'installer_util', | 217 'installer_util', |
256 'installer_util_strings', | 218 'installer_util_strings', |
257 'launcher_support', | 219 'launcher_support', |
258 '../base/base.gyp:base', | 220 '../base/base.gyp:base', |
259 '../breakpad/breakpad.gyp:breakpad_handler', | 221 '../breakpad/breakpad.gyp:breakpad_handler', |
260 '../chrome/common_constants.gyp:common_constants', | 222 '../chrome/common_constants.gyp:common_constants', |
261 '../rlz/rlz.gyp:rlz_lib', | 223 '../rlz/rlz.gyp:rlz_lib', |
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', | 1089 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', |
1128 }, | 1090 }, |
1129 }, { # else branding!="Chrome" | 1091 }, { # else branding!="Chrome" |
1130 'variables': { | 1092 'variables': { |
1131 'branding_dir': 'app/theme/chromium', | 1093 'branding_dir': 'app/theme/chromium', |
1132 'branding_dir_100': 'app/theme/default_100_percent/chromium', | 1094 'branding_dir_100': 'app/theme/default_100_percent/chromium', |
1133 }, | 1095 }, |
1134 }], | 1096 }], |
1135 ], | 1097 ], |
1136 } | 1098 } |
OLD | NEW |