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

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

Issue 811283002: [Installer] Cleaning up dead code for App Launcher / App Host installs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment fix. Created 5 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/installer/setup/uninstall.cc ('k') | chrome/installer/util/browser_distribution.h » ('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 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 static_library("util") { 5 static_library("util") {
6 deps = [ 6 deps = [
7 "//base", 7 "//base",
8 "//chrome:resources", 8 "//chrome:resources",
9 "//chrome:strings", 9 "//chrome:strings",
10 ] 10 ]
11 11
12 if (is_win) { 12 if (is_win) {
13 # TODO(GYP) installer_util on Windows. 13 # TODO(GYP) installer_util on Windows.
14 # This is a bit tricky. It seems that what's currently called 14 # This is a bit tricky. It seems that what's currently called
15 # installer_util_nacl_win64 should be a different target with a different 15 # installer_util_nacl_win64 should be a different target with a different
16 # name ("installer_util_minimal"?) since it's not strictly the 64-bit build 16 # name ("installer_util_minimal"?) since it's not strictly the 64-bit build
17 # of that target. 17 # of that target.
18 sources = [ 18 sources = [
19 "chrome_app_host_operations.cc",
20 "chrome_app_host_operations.h",
21 "chrome_binaries_operations.cc", 19 "chrome_binaries_operations.cc",
22 "chrome_binaries_operations.h", 20 "chrome_binaries_operations.h",
23 "chrome_browser_operations.cc", 21 "chrome_browser_operations.cc",
24 "chrome_browser_operations.h", 22 "chrome_browser_operations.h",
25 "chrome_browser_sxs_operations.cc", 23 "chrome_browser_sxs_operations.cc",
26 "chrome_browser_sxs_operations.h", 24 "chrome_browser_sxs_operations.h",
27 "chrome_frame_operations.cc", 25 "chrome_frame_operations.cc",
28 "chrome_frame_operations.h", 26 "chrome_frame_operations.h",
29 "compat_checks.cc", 27 "compat_checks.cc",
30 "compat_checks.h", 28 "compat_checks.h",
31 "delete_after_reboot_helper.cc", 29 "delete_after_reboot_helper.cc",
32 "delete_after_reboot_helper.h", 30 "delete_after_reboot_helper.h",
33 "eula_util.cc",
34 "eula_util.h",
35 "google_chrome_distribution.cc", 31 "google_chrome_distribution.cc",
36 "google_chrome_distribution.h", 32 "google_chrome_distribution.h",
37 "html_dialog.h", 33 "html_dialog.h",
38 "html_dialog_impl.cc", 34 "html_dialog_impl.cc",
39 "installation_validator.cc", 35 "installation_validator.cc",
40 "installation_validator.h", 36 "installation_validator.h",
41 "logging_installer.cc", 37 "logging_installer.cc",
42 "logging_installer.h", 38 "logging_installer.h",
43 "lzma_util.cc", 39 "lzma_util.cc",
44 "lzma_util.h", 40 "lzma_util.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "app_commands.h", 78 "app_commands.h",
83 "app_registration_data.h", 79 "app_registration_data.h",
84 "auto_launch_util.cc", 80 "auto_launch_util.cc",
85 "auto_launch_util.h", 81 "auto_launch_util.h",
86 "browser_distribution.cc", 82 "browser_distribution.cc",
87 "browser_distribution.h", 83 "browser_distribution.h",
88 "callback_work_item.cc", 84 "callback_work_item.cc",
89 "callback_work_item.h", 85 "callback_work_item.h",
90 "channel_info.cc", 86 "channel_info.cc",
91 "channel_info.h", 87 "channel_info.h",
92 "chrome_app_host_distribution.cc",
93 "chrome_app_host_distribution.h",
94 "chrome_frame_distribution.cc", 88 "chrome_frame_distribution.cc",
95 "chrome_frame_distribution.h", 89 "chrome_frame_distribution.h",
96 "chromium_binaries_distribution.cc", 90 "chromium_binaries_distribution.cc",
97 "chromium_binaries_distribution.h", 91 "chromium_binaries_distribution.h",
98 "conditional_work_item_list.cc", 92 "conditional_work_item_list.cc",
99 "conditional_work_item_list.h", 93 "conditional_work_item_list.h",
100 "copy_tree_work_item.cc", 94 "copy_tree_work_item.cc",
101 "copy_tree_work_item.h", 95 "copy_tree_work_item.h",
102 "create_dir_work_item.cc", 96 "create_dir_work_item.cc",
103 "create_dir_work_item.h", 97 "create_dir_work_item.h",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 190
197 args = [ 191 args = [
198 "-i", 192 "-i",
199 rebase_path(grdfile, root_build_dir) + ":resources", 193 rebase_path(grdfile, root_build_dir) + ":resources",
200 "-n", 194 "-n",
201 "installer_util_strings", 195 "installer_util_strings",
202 "-o", 196 "-o",
203 rebase_path(outdir, root_build_dir), 197 rebase_path(outdir, root_build_dir),
204 ] 198 ]
205 } 199 }
OLDNEW
« no previous file with comments | « chrome/installer/setup/uninstall.cc ('k') | chrome/installer/util/browser_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698