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

Side by Side Diff: chrome/chrome_repack_locales.gni

Issue 1291703008: Rename is_chromeos in chrome/src. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: retry Created 5 years, 4 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/browser/ui/BUILD.gn ('k') | chrome/common/BUILD.gn » ('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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Arguments: 10 # Arguments:
(...skipping 23 matching lines...) Expand all
34 "//chrome/app/resources:platform_locale_settings", 34 "//chrome/app/resources:platform_locale_settings",
35 "//chrome/app:generated_resources", 35 "//chrome/app:generated_resources",
36 "//chrome/app/resources:locale_settings", 36 "//chrome/app/resources:locale_settings",
37 "//components/strings", 37 "//components/strings",
38 ] 38 ]
39 39
40 if (use_ash) { 40 if (use_ash) {
41 sources += [ "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak" ] 41 sources += [ "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak" ]
42 deps += [ "//ash/strings" ] 42 deps += [ "//ash/strings" ]
43 } 43 }
44 if (is_chromeos) { 44 if (use_cros_fe) {
45 sources += [ 45 sources += [
46 "${root_gen_dir}/remoting/resources/${locale}.pak", 46 "${root_gen_dir}/remoting/resources/${locale}.pak",
47 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak", 47 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak",
48 ] 48 ]
49 deps += [ 49 deps += [
50 "//remoting/resources", 50 "//remoting/resources",
51 "//ui/chromeos/strings", 51 "//ui/chromeos/strings",
52 ] 52 ]
53 } 53 }
54 if (!is_ios) { 54 if (!is_ios) {
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 149
150 current_index = current_index + 1 150 current_index = current_index + 1
151 } 151 }
152 152
153 # The group that external targets depend on which collects all deps. 153 # The group that external targets depend on which collects all deps.
154 group(group_target_name) { 154 group(group_target_name) {
155 forward_variables_from(invoker, [ "visibility" ]) 155 forward_variables_from(invoker, [ "visibility" ])
156 deps = locale_targets 156 deps = locale_targets
157 } 157 }
158 } 158 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698