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 assert(enable_extensions) |
| 8 |
7 # GYP version: extensions/extensions_strings.gyp:extensions_strings | 9 # GYP version: extensions/extensions_strings.gyp:extensions_strings |
8 grit("strings") { | 10 grit("strings") { |
9 # This target is in this directory since it matches the output grit path for | 11 # This target is in this directory since it matches the output grit path for |
10 # the GYP version of this target. Weirdly, it does not match the input path. | 12 # the GYP version of this target. Weirdly, it does not match the input path. |
11 # The .grd should probably be moved here. | 13 # The .grd should probably be moved here. |
12 source = "../extensions_strings.grd" | 14 source = "../extensions_strings.grd" |
13 outputs = [ | 15 outputs = [ |
14 "grit/extensions_strings.h", | 16 "grit/extensions_strings.h", |
15 "extensions_strings_am.pak", | 17 "extensions_strings_am.pak", |
16 "extensions_strings_ar.pak", | 18 "extensions_strings_ar.pak", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "extensions_strings_ta.pak", | 63 "extensions_strings_ta.pak", |
62 "extensions_strings_te.pak", | 64 "extensions_strings_te.pak", |
63 "extensions_strings_th.pak", | 65 "extensions_strings_th.pak", |
64 "extensions_strings_tr.pak", | 66 "extensions_strings_tr.pak", |
65 "extensions_strings_uk.pak", | 67 "extensions_strings_uk.pak", |
66 "extensions_strings_vi.pak", | 68 "extensions_strings_vi.pak", |
67 "extensions_strings_zh-CN.pak", | 69 "extensions_strings_zh-CN.pak", |
68 "extensions_strings_zh-TW.pak", | 70 "extensions_strings_zh-TW.pak", |
69 ] | 71 ] |
70 } | 72 } |
OLD | NEW |