OLD | NEW |
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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 | 8 |
9 # Arguments: | 9 # Arguments: |
10 # | 10 # |
(...skipping 29 matching lines...) Expand all Loading... |
40 sources += [ | 40 sources += [ |
41 "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak", | 41 "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak", |
42 ] | 42 ] |
43 deps += [ | 43 deps += [ |
44 "//ash/strings", | 44 "//ash/strings", |
45 ] | 45 ] |
46 } | 46 } |
47 if (is_chromeos) { | 47 if (is_chromeos) { |
48 sources += [ | 48 sources += [ |
49 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak", | 49 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak", |
| 50 "${root_gen_dir}/remoting/resources/${locale}.pak", |
50 ] | 51 ] |
51 deps += [ | 52 deps += [ |
| 53 "//remoting/resources", |
52 "//ui/chromeos/strings", | 54 "//ui/chromeos/strings", |
53 ] | 55 ] |
54 } | 56 } |
55 if (!is_ios) { | 57 if (!is_ios) { |
56 sources += [ | 58 sources += [ |
57 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak", | 59 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak", |
58 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak", | 60 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak", |
59 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak", | 61 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak", |
60 ] | 62 ] |
61 deps += [ | 63 deps += [ |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 } | 167 } |
166 | 168 |
167 # The group that external targets depend on which collects all deps. | 169 # The group that external targets depend on which collects all deps. |
168 group(group_target_name) { | 170 group(group_target_name) { |
169 if (defined(invoker.visibility)) { | 171 if (defined(invoker.visibility)) { |
170 visibility = invoker.visibility | 172 visibility = invoker.visibility |
171 } | 173 } |
172 deps = locale_targets | 174 deps = locale_targets |
173 } | 175 } |
174 } | 176 } |
OLD | NEW |