Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(546)

Side by Side Diff: ios/chrome/content_widget_extension/strings/BUILD.gn

Issue 2927803002: Add the new content widget including localised title. (Closed)
Patch Set: comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 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 group("strings") {
9 public_deps = [
10 ":ios_content_widget_extension_chromium_strings",
11 ":ios_content_widget_extension_google_chrome_strings",
12 ]
13 }
14
15 grit("ios_content_widget_extension_chromium_strings") {
16 source = "ios_content_widget_extension_chromium_strings.grd"
17 output_dir = "$root_gen_dir/ios/content_widget_extension"
18 outputs = [
19 "grit/ios_content_widget_extension_chromium_strings.h",
20 ]
21 foreach(locale, locales_with_fake_bidi) {
22 outputs += [ "ios_content_widget_extension_chromium_strings_$locale.pak" ]
23 }
24 }
25
26 grit("ios_content_widget_extension_google_chrome_strings") {
27 source = "ios_content_widget_extension_google_chrome_strings.grd"
28 output_dir = "$root_gen_dir/ios/content_widget_extension"
29 outputs = [
30 "grit/ios_content_widget_extension_google_chrome_strings.h",
31 ]
32 foreach(locale, locales_with_fake_bidi) {
33 outputs +=
34 [ "ios_content_widget_extension_google_chrome_strings_$locale.pak" ]
35 }
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698