OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("util") { | 8 static_library("util") { |
9 deps = [ | 9 deps = [ |
10 "//base", | 10 "//base", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 sources += [ | 75 sources += [ |
76 "advanced_firewall_manager_win.cc", | 76 "advanced_firewall_manager_win.cc", |
77 "advanced_firewall_manager_win.h", | 77 "advanced_firewall_manager_win.h", |
78 "app_command.cc", | 78 "app_command.cc", |
79 "app_command.h", | 79 "app_command.h", |
80 "app_commands.cc", | 80 "app_commands.cc", |
81 "app_commands.h", | 81 "app_commands.h", |
82 "app_registration_data.h", | 82 "app_registration_data.h", |
83 "auto_launch_util.cc", | 83 "auto_launch_util.cc", |
84 "auto_launch_util.h", | 84 "auto_launch_util.h", |
| 85 "beacons.cc", |
| 86 "beacons.h", |
85 "browser_distribution.cc", | 87 "browser_distribution.cc", |
86 "browser_distribution.h", | 88 "browser_distribution.h", |
87 "callback_work_item.cc", | 89 "callback_work_item.cc", |
88 "callback_work_item.h", | 90 "callback_work_item.h", |
89 "channel_info.cc", | 91 "channel_info.cc", |
90 "channel_info.h", | 92 "channel_info.h", |
91 "chrome_frame_distribution.cc", | 93 "chrome_frame_distribution.cc", |
92 "chrome_frame_distribution.h", | 94 "chrome_frame_distribution.h", |
93 "chromium_binaries_distribution.cc", | 95 "chromium_binaries_distribution.cc", |
94 "chromium_binaries_distribution.h", | 96 "chromium_binaries_distribution.h", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 ":generate_strings", | 209 ":generate_strings", |
208 ] | 210 ] |
209 } | 211 } |
210 | 212 |
211 if (is_win) { | 213 if (is_win) { |
212 test("installer_util_unittests") { | 214 test("installer_util_unittests") { |
213 sources = [ | 215 sources = [ |
214 "../setup/compat_checks_unittest.cc", | 216 "../setup/compat_checks_unittest.cc", |
215 "../setup/setup_constants.cc", | 217 "../setup/setup_constants.cc", |
216 "advanced_firewall_manager_win_unittest.cc", | 218 "advanced_firewall_manager_win_unittest.cc", |
| 219 "beacons_unittest.cc", |
217 "callback_work_item_unittest.cc", | 220 "callback_work_item_unittest.cc", |
218 "channel_info_unittest.cc", | 221 "channel_info_unittest.cc", |
219 "copy_tree_work_item_unittest.cc", | 222 "copy_tree_work_item_unittest.cc", |
220 "create_dir_work_item_unittest.cc", | 223 "create_dir_work_item_unittest.cc", |
221 "create_reg_key_work_item_unittest.cc", | 224 "create_reg_key_work_item_unittest.cc", |
222 "delete_after_reboot_helper_unittest.cc", | 225 "delete_after_reboot_helper_unittest.cc", |
223 "delete_reg_key_work_item_unittest.cc", | 226 "delete_reg_key_work_item_unittest.cc", |
224 "delete_reg_value_work_item_unittest.cc", | 227 "delete_reg_value_work_item_unittest.cc", |
225 "delete_tree_work_item_unittest.cc", | 228 "delete_tree_work_item_unittest.cc", |
226 "duplicate_tree_detector_unittest.cc", | 229 "duplicate_tree_detector_unittest.cc", |
(...skipping 16 matching lines...) Expand all Loading... |
243 "product_state_unittest.cc", | 246 "product_state_unittest.cc", |
244 "product_unittest.cc", | 247 "product_unittest.cc", |
245 "product_unittest.h", | 248 "product_unittest.h", |
246 "registry_key_backup_unittest.cc", | 249 "registry_key_backup_unittest.cc", |
247 "registry_test_data.cc", | 250 "registry_test_data.cc", |
248 "registry_test_data.h", | 251 "registry_test_data.h", |
249 "run_all_unittests.cc", | 252 "run_all_unittests.cc", |
250 "self_cleaning_temp_dir_unittest.cc", | 253 "self_cleaning_temp_dir_unittest.cc", |
251 "set_reg_value_work_item_unittest.cc", | 254 "set_reg_value_work_item_unittest.cc", |
252 "shell_util_unittest.cc", | 255 "shell_util_unittest.cc", |
| 256 "test_app_registration_data.cc", |
| 257 "test_app_registration_data.h", |
253 "uninstall_metrics_unittest.cc", | 258 "uninstall_metrics_unittest.cc", |
254 "wmi_unittest.cc", | 259 "wmi_unittest.cc", |
255 "work_item_list_unittest.cc", | 260 "work_item_list_unittest.cc", |
256 ] | 261 ] |
257 | 262 |
258 deps = [ | 263 deps = [ |
259 ":strings", | 264 ":strings", |
260 ":util", | 265 ":util", |
261 "//base", | 266 "//base", |
262 "//base:i18n", | 267 "//base:i18n", |
263 "//base/test:test_support", | 268 "//base/test:test_support", |
264 "//chrome:other_version", | 269 "//chrome:other_version", |
265 "//chrome/common", | 270 "//chrome/common", |
266 "//chrome/installer/test:alternate_version_generator_lib", | 271 "//chrome/installer/test:alternate_version_generator_lib", |
267 "//content/public/common", | 272 "//content/public/common", |
268 "//testing/gmock", | 273 "//testing/gmock", |
269 "//testing/gtest", | 274 "//testing/gtest", |
270 ] | 275 ] |
271 | 276 |
272 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 277 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
273 } | 278 } |
274 } # is_win | 279 } # is_win |
OLD | NEW |