Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/installer/setup/BUILD.gn

Issue 2459583002: Use InstallDetails in setup. (Closed)
Patch Set: another doc comment Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/install_static/user_data_dir_win_unittest.cc ('k') | chrome/installer/setup/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/process_version_rc_template.gni") 5 import("//chrome/process_version_rc_template.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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "installer_crash_reporting.cc", 45 "installer_crash_reporting.cc",
46 "installer_crash_reporting.h", 46 "installer_crash_reporting.h",
47 "installer_state.cc", 47 "installer_state.cc",
48 "installer_state.h", 48 "installer_state.h",
49 "persistent_histogram_storage.cc", 49 "persistent_histogram_storage.cc",
50 "persistent_histogram_storage.h", 50 "persistent_histogram_storage.h",
51 "progress_calculator.cc", 51 "progress_calculator.cc",
52 "progress_calculator.h", 52 "progress_calculator.h",
53 "setup_constants.cc", 53 "setup_constants.cc",
54 "setup_constants.h", 54 "setup_constants.h",
55 "setup_install_details.cc",
56 "setup_install_details.h",
55 "setup_singleton.cc", 57 "setup_singleton.cc",
56 "setup_singleton.h", 58 "setup_singleton.h",
57 "setup_util.cc", 59 "setup_util.cc",
58 "setup_util.h", 60 "setup_util.h",
59 "update_active_setup_version_work_item.cc", 61 "update_active_setup_version_work_item.cc",
60 "update_active_setup_version_work_item.h", 62 "update_active_setup_version_work_item.h",
61 "user_hive_visitor.cc", 63 "user_hive_visitor.cc",
62 "user_hive_visitor.h", 64 "user_hive_visitor.h",
63 ] 65 ]
64 66
(...skipping 24 matching lines...) Expand all
89 # This test covers the mini installer and setup tests. 91 # This test covers the mini installer and setup tests.
90 test("setup_unittests") { 92 test("setup_unittests") {
91 sources = [ 93 sources = [
92 "archive_patch_helper_unittest.cc", 94 "archive_patch_helper_unittest.cc",
93 "install_unittest.cc", 95 "install_unittest.cc",
94 "install_worker_unittest.cc", 96 "install_worker_unittest.cc",
95 "installer_state_unittest.cc", 97 "installer_state_unittest.cc",
96 "memory_unittest.cc", 98 "memory_unittest.cc",
97 "progress_calculator_unittest.cc", 99 "progress_calculator_unittest.cc",
98 "run_all_unittests.cc", 100 "run_all_unittests.cc",
101 "setup_install_details_unittest.cc",
99 "setup_singleton_unittest.cc", 102 "setup_singleton_unittest.cc",
100 "setup_util_unittest.cc", 103 "setup_util_unittest.cc",
101 "setup_util_unittest.h", 104 "setup_util_unittest.h",
102 "update_active_setup_version_work_item_unittest.cc", 105 "update_active_setup_version_work_item_unittest.cc",
103 "user_hive_visitor_unittest.cc", 106 "user_hive_visitor_unittest.cc",
104 ] 107 ]
105 108
106 deps = [ 109 deps = [
107 ":lib", 110 ":lib",
108 "//base", 111 "//base",
109 "//base:i18n", 112 "//base:i18n",
110 "//base/test:test_support", 113 "//base/test:test_support",
111 "//chrome/install_static:install_static_util", 114 "//chrome/install_static:install_static_util",
115 "//chrome/install_static/test:test_support",
112 "//chrome/installer/mini_installer:unit_tests", 116 "//chrome/installer/mini_installer:unit_tests",
113 "//chrome/installer/util:test_support", 117 "//chrome/installer/util:test_support",
114 "//testing/gmock", 118 "//testing/gmock",
115 "//testing/gtest", 119 "//testing/gtest",
116 ] 120 ]
117 121
118 data = [ 122 data = [
119 "//chrome/installer/test/data/", 123 "//chrome/installer/test/data/",
120 "//chrome/test/data/installer/", 124 "//chrome/test/data/installer/",
121 ] 125 ]
122 } 126 }
123 } 127 }
OLDNEW
« no previous file with comments | « chrome/install_static/user_data_dir_win_unittest.cc ('k') | chrome/installer/setup/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698