| 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 sources = [ | |
| 12 "blimp_strings.cc", | |
| 13 "blimp_strings.h", | |
| 14 ] | |
| 15 | |
| 16 public_deps = [ | |
| 17 ":strings", | |
| 18 ] | |
| 19 | |
| 20 deps = [ | |
| 21 "//base", | |
| 22 "//ui/base:base", | |
| 23 ] | |
| 24 } | |
| 25 | |
| 26 # Strings exposed to the embedder. The embedder will generate target to depend o
n this, so no | |
| 27 # visibility here. | |
| 28 grit("strings") { | |
| 29 source = "blimp_support_strings.grd" | |
| 30 use_qualified_include = true | |
| 31 outputs = [ | |
| 32 "grit/blimp_strings.h", | |
| 33 ] | |
| 34 | |
| 35 foreach(locale, locales_with_fake_bidi) { | |
| 36 outputs += [ "blimp_strings_$locale.pak" ] | |
| 37 } | |
| 38 } | |
| OLD | NEW |