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

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

Issue 2791593002: Allow installer::GetLocalizedString to return mode-specific strings. (Closed)
Patch Set: manzagop review part the deux Created 3 years, 8 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
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 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 "delete_reg_key_work_item.cc", 149 "delete_reg_key_work_item.cc",
150 "delete_reg_key_work_item.h", 150 "delete_reg_key_work_item.h",
151 "delete_reg_value_work_item.cc", 151 "delete_reg_value_work_item.cc",
152 "delete_reg_value_work_item.h", 152 "delete_reg_value_work_item.h",
153 "delete_tree_work_item.cc", 153 "delete_tree_work_item.cc",
154 "delete_tree_work_item.h", 154 "delete_tree_work_item.h",
155 "duplicate_tree_detector.cc", 155 "duplicate_tree_detector.cc",
156 "duplicate_tree_detector.h", 156 "duplicate_tree_detector.h",
157 "firewall_manager_win.cc", 157 "firewall_manager_win.cc",
158 "firewall_manager_win.h", 158 "firewall_manager_win.h",
159 "google_chrome_sxs_distribution.cc",
160 "google_chrome_sxs_distribution.h",
161 "google_update_constants.cc", 159 "google_update_constants.cc",
162 "google_update_constants.h", 160 "google_update_constants.h",
163 "google_update_settings.cc", 161 "google_update_settings.cc",
164 "google_update_settings.h", 162 "google_update_settings.h",
165 "google_update_util.cc", 163 "google_update_util.cc",
166 "google_update_util.h", 164 "google_update_util.h",
167 "helper.cc", 165 "helper.cc",
168 "helper.h", 166 "helper.h",
169 "install_util.cc", 167 "install_util.cc",
170 "install_util.h", 168 "install_util.h",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 inputs = [ 234 inputs = [
237 grdfile, 235 grdfile,
238 ] 236 ]
239 237
240 outputs = [ 238 outputs = [
241 "$target_gen_dir/installer_util_strings.h", 239 "$target_gen_dir/installer_util_strings.h",
242 "$target_gen_dir/installer_util_strings.rc", 240 "$target_gen_dir/installer_util_strings.rc",
243 ] 241 ]
244 242
245 args = [ 243 args = [
244 "-b",
245 "$branding_path_component",
246 "-i", 246 "-i",
247 rebase_path(grdfile, root_build_dir) + ":resources", 247 rebase_path(grdfile, root_build_dir) + ":resources",
248 "-n", 248 "-n",
249 "installer_util_strings", 249 "installer_util_strings",
250 "-o", 250 "-o",
251 rebase_path(target_gen_dir, root_build_dir), 251 rebase_path(target_gen_dir, root_build_dir),
252 ] 252 ]
253 } 253 }
254 254
255 # Compile the generated .rc file. 255 # Compile the generated .rc file.
(...skipping 30 matching lines...) Expand all
286 "delete_after_reboot_helper_unittest.cc", 286 "delete_after_reboot_helper_unittest.cc",
287 "delete_old_versions_unittest.cc", 287 "delete_old_versions_unittest.cc",
288 "delete_reg_key_work_item_unittest.cc", 288 "delete_reg_key_work_item_unittest.cc",
289 "delete_reg_value_work_item_unittest.cc", 289 "delete_reg_value_work_item_unittest.cc",
290 "delete_tree_work_item_unittest.cc", 290 "delete_tree_work_item_unittest.cc",
291 "duplicate_tree_detector_unittest.cc", 291 "duplicate_tree_detector_unittest.cc",
292 "google_update_settings_unittest.cc", 292 "google_update_settings_unittest.cc",
293 "install_util_unittest.cc", 293 "install_util_unittest.cc",
294 "installer_util_test_common.cc", 294 "installer_util_test_common.cc",
295 "installer_util_test_common.h", 295 "installer_util_test_common.h",
296 "l10n_string_util_unittest.cc",
296 "language_selector_unittest.cc", 297 "language_selector_unittest.cc",
297 "legacy_firewall_manager_win_unittest.cc", 298 "legacy_firewall_manager_win_unittest.cc",
298 "logging_installer_unittest.cc", 299 "logging_installer_unittest.cc",
299 "lzma_file_allocator_unittest.cc", 300 "lzma_file_allocator_unittest.cc",
300 "lzma_util_unittest.cc", 301 "lzma_util_unittest.cc",
301 "master_preferences_unittest.cc", 302 "master_preferences_unittest.cc",
302 "move_tree_work_item_unittest.cc", 303 "move_tree_work_item_unittest.cc",
303 "product_state_unittest.cc", 304 "product_state_unittest.cc",
304 "product_unittest.cc", 305 "product_unittest.cc",
305 "registry_key_backup_unittest.cc", 306 "registry_key_backup_unittest.cc",
(...skipping 30 matching lines...) Expand all
336 "//testing/gmock", 337 "//testing/gmock",
337 "//testing/gtest", 338 "//testing/gtest",
338 ] 339 ]
339 340
340 data = [ 341 data = [
341 "//chrome/test/data/extensions/", 342 "//chrome/test/data/extensions/",
342 "//chrome/test/data/installer/", 343 "//chrome/test/data/installer/",
343 ] 344 ]
344 } 345 }
345 } # is_win 346 } # is_win
OLDNEW
« no previous file with comments | « chrome/install_static/google_chrome_install_modes.h ('k') | chrome/installer/util/browser_distribution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698