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

Side by Side Diff: blimp/client/support/resources/BUILD.gn

Issue 2406203003: Added blimp support strings. (Closed)
Patch Set: Add entry in translation expectation script. Created 4 years, 2 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 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("//blimp/client/core/config.gni")
6 import("//build/config/locales.gni")
7 import("//tools/grit/grit_rule.gni")
8
9 # Resources exposed to the embedder.
10 source_set("resources") {
11 visibility = [ "//blimp/client/support/*" ]
12
13 sources = [
14 "blimp_strings.h",
15 ]
16
17 public_deps = [
18 ":strings",
19 ]
20
21 deps = [
22 "//base",
23 "//ui/base:base",
24 ]
25 }
26
27 # Strings exposed to the embedder. The embedder will generate target to depend o n this, so no
28 # visibility here.
29 grit("strings") {
30 source = "blimp_strings.grd"
31 use_qualified_include = true
32 outputs = [
33 "grit/blimp_strings.h",
34 ]
35
36 foreach(locale, locales_with_fake_bidi) {
37 outputs += [ "blimp_strings_$locale.pak" ]
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698