| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 # Meta target that includes both ui_strings and app_locale_settings. Most | 7 # Meta target that includes both ui_strings and app_locale_settings. Most |
| 8 # targets want both. You can depend on the individually if you need to. | 8 # targets want both. You can depend on the individually if you need to. |
| 9 group("strings") { | 9 group("strings") { |
| 10 deps = [ | 10 deps = [ |
| 11 ":ui_strings", | 11 ":ui_strings", |
| 12 ":app_locale_settings", | 12 ":app_locale_settings", |
| 13 ] | 13 ] |
| 14 } | 14 } |
| 15 | 15 |
| 16 grit("ui_strings") { | 16 grit("ui_strings") { |
| 17 source = "ui_strings.grd" | 17 source = "ui_strings.grd" |
| 18 use_qualified_include = true |
| 18 outputs = [ | 19 outputs = [ |
| 19 "grit/ui_strings.h", | 20 "grit/ui_strings.h", |
| 20 "ui_strings_am.pak", | 21 "ui_strings_am.pak", |
| 21 "ui_strings_ar.pak", | 22 "ui_strings_ar.pak", |
| 22 "ui_strings_bg.pak", | 23 "ui_strings_bg.pak", |
| 23 "ui_strings_bn.pak", | 24 "ui_strings_bn.pak", |
| 24 "ui_strings_ca.pak", | 25 "ui_strings_ca.pak", |
| 25 "ui_strings_cs.pak", | 26 "ui_strings_cs.pak", |
| 26 "ui_strings_da.pak", | 27 "ui_strings_da.pak", |
| 27 "ui_strings_de.pak", | 28 "ui_strings_de.pak", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "ui_strings_tr.pak", | 70 "ui_strings_tr.pak", |
| 70 "ui_strings_uk.pak", | 71 "ui_strings_uk.pak", |
| 71 "ui_strings_vi.pak", | 72 "ui_strings_vi.pak", |
| 72 "ui_strings_zh-CN.pak", | 73 "ui_strings_zh-CN.pak", |
| 73 "ui_strings_zh-TW.pak", | 74 "ui_strings_zh-TW.pak", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| 76 | 77 |
| 77 grit("app_locale_settings") { | 78 grit("app_locale_settings") { |
| 78 source = "app_locale_settings.grd" | 79 source = "app_locale_settings.grd" |
| 80 use_qualified_include = true |
| 79 outputs = [ | 81 outputs = [ |
| 80 "grit/app_locale_settings.h", | 82 "grit/app_locale_settings.h", |
| 81 "app_locale_settings_am.pak", | 83 "app_locale_settings_am.pak", |
| 82 "app_locale_settings_ar.pak", | 84 "app_locale_settings_ar.pak", |
| 83 "app_locale_settings_bg.pak", | 85 "app_locale_settings_bg.pak", |
| 84 "app_locale_settings_bn.pak", | 86 "app_locale_settings_bn.pak", |
| 85 "app_locale_settings_ca.pak", | 87 "app_locale_settings_ca.pak", |
| 86 "app_locale_settings_cs.pak", | 88 "app_locale_settings_cs.pak", |
| 87 "app_locale_settings_da.pak", | 89 "app_locale_settings_da.pak", |
| 88 "app_locale_settings_de.pak", | 90 "app_locale_settings_de.pak", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "app_locale_settings_ta.pak", | 129 "app_locale_settings_ta.pak", |
| 128 "app_locale_settings_te.pak", | 130 "app_locale_settings_te.pak", |
| 129 "app_locale_settings_th.pak", | 131 "app_locale_settings_th.pak", |
| 130 "app_locale_settings_tr.pak", | 132 "app_locale_settings_tr.pak", |
| 131 "app_locale_settings_uk.pak", | 133 "app_locale_settings_uk.pak", |
| 132 "app_locale_settings_vi.pak", | 134 "app_locale_settings_vi.pak", |
| 133 "app_locale_settings_zh-CN.pak", | 135 "app_locale_settings_zh-CN.pak", |
| 134 "app_locale_settings_zh-TW.pak", | 136 "app_locale_settings_zh-TW.pak", |
| 135 ] | 137 ] |
| 136 } | 138 } |
| OLD | NEW |