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

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

Issue 2027063002: Introduce UserHiveVisitor for performing operations on local users' registry hives. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gab review Created 4 years, 6 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/chrome_installer.gypi ('k') | chrome/installer/setup/uninstall.cc » ('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/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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "installer_crash_reporting.cc", 46 "installer_crash_reporting.cc",
47 "installer_crash_reporting.h", 47 "installer_crash_reporting.h",
48 "installer_metrics.cc", 48 "installer_metrics.cc",
49 "installer_metrics.h", 49 "installer_metrics.h",
50 "setup_constants.cc", 50 "setup_constants.cc",
51 "setup_constants.h", 51 "setup_constants.h",
52 "setup_util.cc", 52 "setup_util.cc",
53 "setup_util.h", 53 "setup_util.h",
54 "update_active_setup_version_work_item.cc", 54 "update_active_setup_version_work_item.cc",
55 "update_active_setup_version_work_item.h", 55 "update_active_setup_version_work_item.h",
56 "user_hive_visitor.cc",
57 "user_hive_visitor.h",
56 ] 58 ]
57 59
58 public_deps = [ 60 public_deps = [
59 "//base", 61 "//base",
60 "//chrome/common:constants", 62 "//chrome/common:constants",
61 "//chrome/common:version_header", 63 "//chrome/common:version_header",
62 "//chrome/installer/util:with_rc_strings", 64 "//chrome/installer/util:with_rc_strings",
63 "//chrome_elf:constants", 65 "//chrome_elf:constants",
64 "//components/crash/content/app:app", 66 "//components/crash/content/app:app",
65 "//components/crash/content/app:lib", 67 "//components/crash/content/app:lib",
(...skipping 15 matching lines...) Expand all
81 test("setup_unittests") { 83 test("setup_unittests") {
82 sources = [ 84 sources = [
83 "archive_patch_helper_unittest.cc", 85 "archive_patch_helper_unittest.cc",
84 "install_unittest.cc", 86 "install_unittest.cc",
85 "install_worker_unittest.cc", 87 "install_worker_unittest.cc",
86 "memory_unittest.cc", 88 "memory_unittest.cc",
87 "run_all_unittests.cc", 89 "run_all_unittests.cc",
88 "setup_util_unittest.cc", 90 "setup_util_unittest.cc",
89 "setup_util_unittest.h", 91 "setup_util_unittest.h",
90 "update_active_setup_version_work_item_unittest.cc", 92 "update_active_setup_version_work_item_unittest.cc",
93 "user_hive_visitor_unittest.cc",
91 ] 94 ]
92 95
93 deps = [ 96 deps = [
94 ":lib", 97 ":lib",
95 "//base", 98 "//base",
96 "//base:i18n", 99 "//base:i18n",
97 "//base/test:test_support", 100 "//base/test:test_support",
98 "//chrome/install_static:install_static_util", 101 "//chrome/install_static:install_static_util",
99 "//chrome/installer/mini_installer:unit_tests", 102 "//chrome/installer/mini_installer:unit_tests",
100 "//testing/gmock", 103 "//testing/gmock",
101 "//testing/gtest", 104 "//testing/gtest",
102 ] 105 ]
103 106
104 data = [ 107 data = [
105 "//chrome/installer/test/data/", 108 "//chrome/installer/test/data/",
106 "//chrome/test/data/installer/", 109 "//chrome/test/data/installer/",
107 ] 110 ]
108 } 111 }
109 } 112 }
OLDNEW
« no previous file with comments | « chrome/chrome_installer.gypi ('k') | chrome/installer/setup/uninstall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698