| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 # The constants target checks the Chrome distribution from this target. Both | 50 # The constants target checks the Chrome distribution from this target. Both |
| 51 # targets have to be linked together in practice. | 51 # targets have to be linked together in practice. |
| 52 allow_circular_includes_from = [ "//chrome/common:constants" ] | 52 allow_circular_includes_from = [ "//chrome/common:constants" ] |
| 53 | 53 |
| 54 if (is_win) { | 54 if (is_win) { |
| 55 sources = [ | 55 sources = [ |
| 56 "chrome_browser_operations.cc", | 56 "chrome_browser_operations.cc", |
| 57 "chrome_browser_operations.h", | 57 "chrome_browser_operations.h", |
| 58 "compat_checks.cc", | |
| 59 "compat_checks.h", | |
| 60 "delete_after_reboot_helper.cc", | 58 "delete_after_reboot_helper.cc", |
| 61 "delete_after_reboot_helper.h", | 59 "delete_after_reboot_helper.h", |
| 62 "google_chrome_distribution.cc", | 60 "google_chrome_distribution.cc", |
| 63 "google_chrome_distribution.h", | 61 "google_chrome_distribution.h", |
| 64 "html_dialog.h", | 62 "html_dialog.h", |
| 65 "html_dialog_impl.cc", | 63 "html_dialog_impl.cc", |
| 66 "logging_installer.cc", | 64 "logging_installer.cc", |
| 67 "logging_installer.h", | 65 "logging_installer.h", |
| 68 "lzma_file_allocator.cc", | 66 "lzma_file_allocator.cc", |
| 69 "lzma_file_allocator.h", | 67 "lzma_file_allocator.h", |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 "fake_product_state.h", | 268 "fake_product_state.h", |
| 271 ] | 269 ] |
| 272 deps = [ | 270 deps = [ |
| 273 ":with_no_strings", | 271 ":with_no_strings", |
| 274 "//base", | 272 "//base", |
| 275 ] | 273 ] |
| 276 } | 274 } |
| 277 | 275 |
| 278 test("installer_util_unittests") { | 276 test("installer_util_unittests") { |
| 279 sources = [ | 277 sources = [ |
| 280 "../setup/compat_checks_unittest.cc", | |
| 281 "advanced_firewall_manager_win_unittest.cc", | 278 "advanced_firewall_manager_win_unittest.cc", |
| 282 "beacons_unittest.cc", | 279 "beacons_unittest.cc", |
| 283 "callback_work_item_unittest.cc", | 280 "callback_work_item_unittest.cc", |
| 284 "channel_info_unittest.cc", | 281 "channel_info_unittest.cc", |
| 285 "conditional_work_item_list_unittest.cc", | 282 "conditional_work_item_list_unittest.cc", |
| 286 "copy_tree_work_item_unittest.cc", | 283 "copy_tree_work_item_unittest.cc", |
| 287 "create_dir_work_item_unittest.cc", | 284 "create_dir_work_item_unittest.cc", |
| 288 "create_reg_key_work_item_unittest.cc", | 285 "create_reg_key_work_item_unittest.cc", |
| 289 "delete_after_reboot_helper_unittest.cc", | 286 "delete_after_reboot_helper_unittest.cc", |
| 290 "delete_old_versions_unittest.cc", | 287 "delete_old_versions_unittest.cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "//testing/gmock", | 336 "//testing/gmock", |
| 340 "//testing/gtest", | 337 "//testing/gtest", |
| 341 ] | 338 ] |
| 342 | 339 |
| 343 data = [ | 340 data = [ |
| 344 "//chrome/test/data/extensions/", | 341 "//chrome/test/data/extensions/", |
| 345 "//chrome/test/data/installer/", | 342 "//chrome/test/data/installer/", |
| 346 ] | 343 ] |
| 347 } | 344 } |
| 348 } # is_win | 345 } # is_win |
| OLD | NEW |