| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "delete_after_reboot_helper.cc", | 58 "delete_after_reboot_helper.cc", |
| 59 "delete_after_reboot_helper.h", | 59 "delete_after_reboot_helper.h", |
| 60 "experiment_labels.cc", |
| 61 "experiment_labels.h", |
| 60 "google_chrome_distribution.cc", | 62 "google_chrome_distribution.cc", |
| 61 "google_chrome_distribution.h", | 63 "google_chrome_distribution.h", |
| 62 "html_dialog.h", | 64 "html_dialog.h", |
| 63 "html_dialog_impl.cc", | 65 "html_dialog_impl.cc", |
| 64 "logging_installer.cc", | 66 "logging_installer.cc", |
| 65 "logging_installer.h", | 67 "logging_installer.h", |
| 66 "lzma_file_allocator.cc", | 68 "lzma_file_allocator.cc", |
| 67 "lzma_file_allocator.h", | 69 "lzma_file_allocator.h", |
| 68 "lzma_util.cc", | 70 "lzma_util.cc", |
| 69 "lzma_util.h", | 71 "lzma_util.h", |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "conditional_work_item_list_unittest.cc", | 284 "conditional_work_item_list_unittest.cc", |
| 283 "copy_tree_work_item_unittest.cc", | 285 "copy_tree_work_item_unittest.cc", |
| 284 "create_dir_work_item_unittest.cc", | 286 "create_dir_work_item_unittest.cc", |
| 285 "create_reg_key_work_item_unittest.cc", | 287 "create_reg_key_work_item_unittest.cc", |
| 286 "delete_after_reboot_helper_unittest.cc", | 288 "delete_after_reboot_helper_unittest.cc", |
| 287 "delete_old_versions_unittest.cc", | 289 "delete_old_versions_unittest.cc", |
| 288 "delete_reg_key_work_item_unittest.cc", | 290 "delete_reg_key_work_item_unittest.cc", |
| 289 "delete_reg_value_work_item_unittest.cc", | 291 "delete_reg_value_work_item_unittest.cc", |
| 290 "delete_tree_work_item_unittest.cc", | 292 "delete_tree_work_item_unittest.cc", |
| 291 "duplicate_tree_detector_unittest.cc", | 293 "duplicate_tree_detector_unittest.cc", |
| 294 "experiment_labels_unittest.cc", |
| 292 "google_update_settings_unittest.cc", | 295 "google_update_settings_unittest.cc", |
| 293 "install_util_unittest.cc", | 296 "install_util_unittest.cc", |
| 294 "installer_util_test_common.cc", | 297 "installer_util_test_common.cc", |
| 295 "installer_util_test_common.h", | 298 "installer_util_test_common.h", |
| 296 "l10n_string_util_unittest.cc", | 299 "l10n_string_util_unittest.cc", |
| 297 "language_selector_unittest.cc", | 300 "language_selector_unittest.cc", |
| 298 "legacy_firewall_manager_win_unittest.cc", | 301 "legacy_firewall_manager_win_unittest.cc", |
| 299 "logging_installer_unittest.cc", | 302 "logging_installer_unittest.cc", |
| 300 "lzma_file_allocator_unittest.cc", | 303 "lzma_file_allocator_unittest.cc", |
| 301 "lzma_util_unittest.cc", | 304 "lzma_util_unittest.cc", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "//testing/gmock", | 340 "//testing/gmock", |
| 338 "//testing/gtest", | 341 "//testing/gtest", |
| 339 ] | 342 ] |
| 340 | 343 |
| 341 data = [ | 344 data = [ |
| 342 "//chrome/test/data/extensions/", | 345 "//chrome/test/data/extensions/", |
| 343 "//chrome/test/data/installer/", | 346 "//chrome/test/data/installer/", |
| 344 ] | 347 ] |
| 345 } | 348 } |
| 346 } # is_win | 349 } # is_win |
| OLD | NEW |