OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/locales.gni") |
| 6 import("//tools/grit/grit_rule.gni") |
| 7 |
| 8 grit("strings") { |
| 9 source = "ios_today_extension_strings.grd" |
| 10 output_dir = "$root_gen_dir/ios/today_extension" |
| 11 use_qualified_include = true |
| 12 outputs = [ |
| 13 "grit/ios_today_extension_strings.h", |
| 14 ] |
| 15 foreach(locale, locales_with_fake_bidi) { |
| 16 outputs += [ "ios_today_extension_strings_$locale.pak" ] |
| 17 } |
| 18 } |
OLD | NEW |