| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//chrome/version.gni") | 5 import("//chrome/version.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_win) { | 8 if (is_win) { |
| 9 executable("setup") { | 9 executable("setup") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "install_worker.cc", | 43 "install_worker.cc", |
| 44 "install_worker.h", | 44 "install_worker.h", |
| 45 "installer_crash_reporter_client.cc", | 45 "installer_crash_reporter_client.cc", |
| 46 "installer_crash_reporter_client.h", | 46 "installer_crash_reporter_client.h", |
| 47 "installer_crash_reporting.cc", | 47 "installer_crash_reporting.cc", |
| 48 "installer_crash_reporting.h", | 48 "installer_crash_reporting.h", |
| 49 "installer_metrics.cc", | 49 "installer_metrics.cc", |
| 50 "installer_metrics.h", | 50 "installer_metrics.h", |
| 51 "setup_constants.cc", | 51 "setup_constants.cc", |
| 52 "setup_constants.h", | 52 "setup_constants.h", |
| 53 "setup_singleton.cc", |
| 54 "setup_singleton.h", |
| 53 "setup_util.cc", | 55 "setup_util.cc", |
| 54 "setup_util.h", | 56 "setup_util.h", |
| 55 "update_active_setup_version_work_item.cc", | 57 "update_active_setup_version_work_item.cc", |
| 56 "update_active_setup_version_work_item.h", | 58 "update_active_setup_version_work_item.h", |
| 57 "user_hive_visitor.cc", | 59 "user_hive_visitor.cc", |
| 58 "user_hive_visitor.h", | 60 "user_hive_visitor.h", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 public_deps = [ | 63 public_deps = [ |
| 62 "//base", | 64 "//base", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 82 } | 84 } |
| 83 | 85 |
| 84 # This test covers the mini installer and setup tests. | 86 # This test covers the mini installer and setup tests. |
| 85 test("setup_unittests") { | 87 test("setup_unittests") { |
| 86 sources = [ | 88 sources = [ |
| 87 "archive_patch_helper_unittest.cc", | 89 "archive_patch_helper_unittest.cc", |
| 88 "install_unittest.cc", | 90 "install_unittest.cc", |
| 89 "install_worker_unittest.cc", | 91 "install_worker_unittest.cc", |
| 90 "memory_unittest.cc", | 92 "memory_unittest.cc", |
| 91 "run_all_unittests.cc", | 93 "run_all_unittests.cc", |
| 94 "setup_singleton_unittest.cc", |
| 92 "setup_util_unittest.cc", | 95 "setup_util_unittest.cc", |
| 93 "setup_util_unittest.h", | 96 "setup_util_unittest.h", |
| 94 "update_active_setup_version_work_item_unittest.cc", | 97 "update_active_setup_version_work_item_unittest.cc", |
| 95 "user_hive_visitor_unittest.cc", | 98 "user_hive_visitor_unittest.cc", |
| 96 ] | 99 ] |
| 97 | 100 |
| 98 deps = [ | 101 deps = [ |
| 99 ":lib", | 102 ":lib", |
| 100 "//base", | 103 "//base", |
| 101 "//base:i18n", | 104 "//base:i18n", |
| 102 "//base/test:test_support", | 105 "//base/test:test_support", |
| 103 "//chrome/install_static:install_static_util", | 106 "//chrome/install_static:install_static_util", |
| 104 "//chrome/installer/mini_installer:unit_tests", | 107 "//chrome/installer/mini_installer:unit_tests", |
| 105 "//testing/gmock", | 108 "//testing/gmock", |
| 106 "//testing/gtest", | 109 "//testing/gtest", |
| 107 ] | 110 ] |
| 108 | 111 |
| 109 data = [ | 112 data = [ |
| 110 "//chrome/installer/test/data/", | 113 "//chrome/installer/test/data/", |
| 111 "//chrome/test/data/installer/", | 114 "//chrome/test/data/installer/", |
| 112 ] | 115 ] |
| 113 } | 116 } |
| 114 } | 117 } |
| OLD | NEW |