| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "self_cleaning_temp_dir_unittest.cc", | 324 "self_cleaning_temp_dir_unittest.cc", |
| 325 "set_reg_value_work_item_unittest.cc", | 325 "set_reg_value_work_item_unittest.cc", |
| 326 "shell_util_unittest.cc", | 326 "shell_util_unittest.cc", |
| 327 "test_app_registration_data.cc", | 327 "test_app_registration_data.cc", |
| 328 "test_app_registration_data.h", | 328 "test_app_registration_data.h", |
| 329 "uninstall_metrics_unittest.cc", | 329 "uninstall_metrics_unittest.cc", |
| 330 "wmi_unittest.cc", | 330 "wmi_unittest.cc", |
| 331 "work_item_list_unittest.cc", | 331 "work_item_list_unittest.cc", |
| 332 "work_item_mocks.cc", | 332 "work_item_mocks.cc", |
| 333 "work_item_mocks.h", | 333 "work_item_mocks.h", |
| 334 "work_item_unittest.cc", |
| 334 ] | 335 ] |
| 335 | 336 |
| 336 deps = [ | 337 deps = [ |
| 337 ":with_rc_strings", | 338 ":with_rc_strings", |
| 338 "//base", | 339 "//base", |
| 339 "//base:i18n", | 340 "//base:i18n", |
| 340 "//base/test:test_support", | 341 "//base/test:test_support", |
| 341 "//chrome:other_version", | 342 "//chrome:other_version", |
| 342 "//chrome/install_static:install_static_util", | 343 "//chrome/install_static:install_static_util", |
| 343 "//chrome/installer/setup:lib", | 344 "//chrome/installer/setup:lib", |
| 344 "//chrome/installer/test:alternate_version_generator_lib", | 345 "//chrome/installer/test:alternate_version_generator_lib", |
| 345 "//components/variations", | 346 "//components/variations", |
| 346 "//testing/gmock", | 347 "//testing/gmock", |
| 347 "//testing/gtest", | 348 "//testing/gtest", |
| 348 ] | 349 ] |
| 349 | 350 |
| 350 data = [ | 351 data = [ |
| 351 "//chrome/test/data/extensions/", | 352 "//chrome/test/data/extensions/", |
| 352 "//chrome/test/data/installer/", | 353 "//chrome/test/data/installer/", |
| 353 ] | 354 ] |
| 354 } | 355 } |
| 355 } # is_win | 356 } # is_win |
| OLD | NEW |