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 # This file deliberately has no default "util" target so dependants have to | 8 # This file deliberately has no default "util" target so dependants have to |
9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random | 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random |
10 # code that ends up getting linked into chrome proper should depend on the | 10 # code that ends up getting linked into chrome proper should depend on the |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 } | 286 } |
287 | 287 |
288 if (is_win) { | 288 if (is_win) { |
289 test("installer_util_unittests") { | 289 test("installer_util_unittests") { |
290 sources = [ | 290 sources = [ |
291 "../setup/compat_checks_unittest.cc", | 291 "../setup/compat_checks_unittest.cc", |
292 "advanced_firewall_manager_win_unittest.cc", | 292 "advanced_firewall_manager_win_unittest.cc", |
293 "beacons_unittest.cc", | 293 "beacons_unittest.cc", |
294 "callback_work_item_unittest.cc", | 294 "callback_work_item_unittest.cc", |
295 "channel_info_unittest.cc", | 295 "channel_info_unittest.cc", |
| 296 "conditional_work_item_list_unittest.cc", |
296 "copy_tree_work_item_unittest.cc", | 297 "copy_tree_work_item_unittest.cc", |
297 "create_dir_work_item_unittest.cc", | 298 "create_dir_work_item_unittest.cc", |
298 "create_reg_key_work_item_unittest.cc", | 299 "create_reg_key_work_item_unittest.cc", |
299 "delete_after_reboot_helper_unittest.cc", | 300 "delete_after_reboot_helper_unittest.cc", |
300 "delete_reg_key_work_item_unittest.cc", | 301 "delete_reg_key_work_item_unittest.cc", |
301 "delete_reg_value_work_item_unittest.cc", | 302 "delete_reg_value_work_item_unittest.cc", |
302 "delete_tree_work_item_unittest.cc", | 303 "delete_tree_work_item_unittest.cc", |
303 "duplicate_tree_detector_unittest.cc", | 304 "duplicate_tree_detector_unittest.cc", |
304 "fake_installation_state.h", | 305 "fake_installation_state.h", |
305 "fake_product_state.h", | 306 "fake_product_state.h", |
(...skipping 20 matching lines...) Expand all Loading... |
326 "run_all_unittests.cc", | 327 "run_all_unittests.cc", |
327 "scoped_user_protocol_entry_unittest.cc", | 328 "scoped_user_protocol_entry_unittest.cc", |
328 "self_cleaning_temp_dir_unittest.cc", | 329 "self_cleaning_temp_dir_unittest.cc", |
329 "set_reg_value_work_item_unittest.cc", | 330 "set_reg_value_work_item_unittest.cc", |
330 "shell_util_unittest.cc", | 331 "shell_util_unittest.cc", |
331 "test_app_registration_data.cc", | 332 "test_app_registration_data.cc", |
332 "test_app_registration_data.h", | 333 "test_app_registration_data.h", |
333 "uninstall_metrics_unittest.cc", | 334 "uninstall_metrics_unittest.cc", |
334 "wmi_unittest.cc", | 335 "wmi_unittest.cc", |
335 "work_item_list_unittest.cc", | 336 "work_item_list_unittest.cc", |
| 337 "work_item_mocks.cc", |
| 338 "work_item_mocks.h", |
336 ] | 339 ] |
337 | 340 |
338 deps = [ | 341 deps = [ |
339 ":with_rc_strings", | 342 ":with_rc_strings", |
340 "//base", | 343 "//base", |
341 "//base:i18n", | 344 "//base:i18n", |
342 "//base/test:test_support", | 345 "//base/test:test_support", |
343 "//chrome:other_version", | 346 "//chrome:other_version", |
344 "//chrome/installer/setup:lib", | 347 "//chrome/installer/setup:lib", |
345 "//chrome/installer/test:alternate_version_generator_lib", | 348 "//chrome/installer/test:alternate_version_generator_lib", |
346 "//components/variations", | 349 "//components/variations", |
347 "//testing/gmock", | 350 "//testing/gmock", |
348 "//testing/gtest", | 351 "//testing/gtest", |
349 ] | 352 ] |
350 | 353 |
351 data = [ | 354 data = [ |
352 "//chrome/test/data/extensions/", | 355 "//chrome/test/data/extensions/", |
353 "//chrome/test/data/installer/", | 356 "//chrome/test/data/installer/", |
354 ] | 357 ] |
355 | 358 |
356 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 359 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
357 } | 360 } |
358 } # is_win | 361 } # is_win |
OLD | NEW |