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

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

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 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 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 }
OLDNEW
« no previous file with comments | « blimp/client/support/compositor/compositor_dependencies_impl.cc ('k') | blimp/client/support/resources/blimp_strings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698