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

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

Issue 2542083004: Make //blimp/client/app a real embedder of //blimp/client/public (Closed)
Patch Set: Fix findbugs issue Created 4 years 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
« no previous file with comments | « blimp/client/core/render_widget/BUILD.gn ('k') | blimp/client/core/session/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//blimp/client/core/config.gni") 5 import("//blimp/client/core/config.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 ] 47 ]
48 } 48 }
49 49
50 output_dir = "$root_gen_dir/blimp/client/public/resources" 50 output_dir = "$root_gen_dir/blimp/client/public/resources"
51 } 51 }
52 52
53 # Blimp internal resource. Blimp internal build targets may directly depends on this. 53 # Blimp internal resource. Blimp internal build targets may directly depends on this.
54 # //blimp/client/public shouldn't directly depend on this since we want to 54 # //blimp/client/public shouldn't directly depend on this since we want to
55 # build different things based on |enable_blimp_client| build flag. 55 # build different things based on |enable_blimp_client| build flag.
56 source_set("resources") { 56 source_set("resources") {
57 visibility = [ 57 visibility = [ "//blimp/client/core/*" ]
58 "//blimp/client/app/*",
59 "//blimp/client/core/*",
60 ]
61 58
62 sources = [ 59 sources = [
63 "blimp_strings.cc", 60 "blimp_strings.cc",
64 ] 61 ]
65 62
66 public_deps = [ 63 public_deps = [
67 ":string_data", 64 ":string_data",
68 ] 65 ]
69 66
70 deps = [ 67 deps = [
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 visibility = [ "//blimp/client/core/*" ] 193 visibility = [ "//blimp/client/core/*" ]
197 194
198 grit_output_dir = "$root_gen_dir/blimp/client/core/resources/java/res" 195 grit_output_dir = "$root_gen_dir/blimp/client/core/resources/java/res"
199 generated_files = 196 generated_files =
200 rebase_path(android_blimp_java_resources, "../android/java/res", ".") 197 rebase_path(android_blimp_java_resources, "../android/java/res", ".")
201 deps = [ 198 deps = [
202 ":string_data", 199 ":string_data",
203 ] 200 ]
204 } 201 }
205 } 202 }
OLDNEW
« no previous file with comments | « blimp/client/core/render_widget/BUILD.gn ('k') | blimp/client/core/session/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698