| OLD | NEW |
| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 group("strings") { | 8 group("strings") { |
| 9 deps = [ | 9 public_deps = [ |
| 10 ":ios_chromium_strings", | 10 ":ios_chromium_strings", |
| 11 ":ios_google_chrome_strings", | 11 ":ios_google_chrome_strings", |
| 12 ":ios_strings", | 12 ":ios_strings", |
| 13 ] | 13 ] |
| 14 } | 14 } |
| 15 | 15 |
| 16 grit("ios_strings") { | 16 grit("ios_strings") { |
| 17 source = "ios_strings.grd" | 17 source = "ios_strings.grd" |
| 18 output_dir = "$root_gen_dir/ios/chrome" | 18 output_dir = "$root_gen_dir/ios/chrome" |
| 19 use_qualified_include = true | 19 use_qualified_include = true |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "ios_google_chrome_strings_ta.pak", | 194 "ios_google_chrome_strings_ta.pak", |
| 195 "ios_google_chrome_strings_te.pak", | 195 "ios_google_chrome_strings_te.pak", |
| 196 "ios_google_chrome_strings_th.pak", | 196 "ios_google_chrome_strings_th.pak", |
| 197 "ios_google_chrome_strings_tr.pak", | 197 "ios_google_chrome_strings_tr.pak", |
| 198 "ios_google_chrome_strings_uk.pak", | 198 "ios_google_chrome_strings_uk.pak", |
| 199 "ios_google_chrome_strings_vi.pak", | 199 "ios_google_chrome_strings_vi.pak", |
| 200 "ios_google_chrome_strings_zh-CN.pak", | 200 "ios_google_chrome_strings_zh-CN.pak", |
| 201 "ios_google_chrome_strings_zh-TW.pak", | 201 "ios_google_chrome_strings_zh-TW.pak", |
| 202 ] | 202 ] |
| 203 } | 203 } |
| OLD | NEW |