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("//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 } |
OLD | NEW |