| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 "self_cleaning_temp_dir_unittest.cc", | 329 "self_cleaning_temp_dir_unittest.cc", |
| 330 "set_reg_value_work_item_unittest.cc", | 330 "set_reg_value_work_item_unittest.cc", |
| 331 "shell_util_unittest.cc", | 331 "shell_util_unittest.cc", |
| 332 "test_app_registration_data.cc", | 332 "test_app_registration_data.cc", |
| 333 "test_app_registration_data.h", | 333 "test_app_registration_data.h", |
| 334 "uninstall_metrics_unittest.cc", | 334 "uninstall_metrics_unittest.cc", |
| 335 "wmi_unittest.cc", | 335 "wmi_unittest.cc", |
| 336 "work_item_list_unittest.cc", | 336 "work_item_list_unittest.cc", |
| 337 "work_item_mocks.cc", | 337 "work_item_mocks.cc", |
| 338 "work_item_mocks.h", | 338 "work_item_mocks.h", |
| 339 "work_item_unittest.cc", |
| 339 ] | 340 ] |
| 340 | 341 |
| 341 deps = [ | 342 deps = [ |
| 342 ":with_rc_strings", | 343 ":with_rc_strings", |
| 343 "//base", | 344 "//base", |
| 344 "//base:i18n", | 345 "//base:i18n", |
| 345 "//base/test:test_support", | 346 "//base/test:test_support", |
| 346 "//chrome:other_version", | 347 "//chrome:other_version", |
| 347 "//chrome/installer/setup:lib", | 348 "//chrome/installer/setup:lib", |
| 348 "//chrome/installer/test:alternate_version_generator_lib", | 349 "//chrome/installer/test:alternate_version_generator_lib", |
| 349 "//components/variations", | 350 "//components/variations", |
| 350 "//testing/gmock", | 351 "//testing/gmock", |
| 351 "//testing/gtest", | 352 "//testing/gtest", |
| 352 ] | 353 ] |
| 353 | 354 |
| 354 data = [ | 355 data = [ |
| 355 "//chrome/test/data/extensions/", | 356 "//chrome/test/data/extensions/", |
| 356 "//chrome/test/data/installer/", | 357 "//chrome/test/data/installer/", |
| 357 ] | 358 ] |
| 358 | 359 |
| 359 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 360 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 360 } | 361 } |
| 361 } # is_win | 362 } # is_win |
| OLD | NEW |