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