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

Side by Side Diff: blimp/client/core/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/app/session/test_client_session.cc ('k') | blimp/client/core/common/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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 import("//blimp/client/core/config.gni") 10 import("//blimp/client/core/config.gni")
(...skipping 12 matching lines...) Expand all
23 } else { 23 } else {
24 deps = [ 24 deps = [
25 ":dummy_core", 25 ":dummy_core",
26 ] 26 ]
27 } 27 }
28 } 28 }
29 29
30 group("core") { 30 group("core") {
31 visibility = [ 31 visibility = [
32 ":core_shim", 32 ":core_shim",
33 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. 33 "//blimp/client/app:*", # TODO(nyquist): Remove when enable_blimp_client is gone.
34 "//blimp/client/test", 34 "//blimp/client/test",
35 "//blimp/test/*", 35 "//blimp/test/*",
36 ] 36 ]
37 37
38 deps = [ 38 deps = [
39 "//blimp/client/core/compositor", 39 "//blimp/client/core/compositor",
40 "//blimp/client/core/contents", 40 "//blimp/client/core/contents",
41 "//blimp/client/core/context", 41 "//blimp/client/core/context",
42 "//blimp/client/core/feedback", 42 "//blimp/client/core/feedback",
43 "//blimp/client/core/geolocation", 43 "//blimp/client/core/geolocation",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 deps = [ 90 deps = [
91 ":dummy_core_java", 91 ":dummy_core_java",
92 ] 92 ]
93 } 93 }
94 } 94 }
95 95
96 java_group("core_java") { 96 java_group("core_java") {
97 visibility = [ 97 visibility = [
98 ":core_shim_java", 98 ":core_shim_java",
99 "//blimp/client:blimp_unittests_java_deps", 99 "//blimp/client:blimp_unittests_java_deps",
100 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. 100 "//blimp/client/app:*", # TODO(nyquist): Remove when enable_blimp_client is gone.
101 ] 101 ]
102 102
103 deps = [ 103 deps = [
104 "//blimp/client/core/contents:contents_java", 104 "//blimp/client/core/contents:contents_java",
105 "//blimp/client/core/context:context_java", 105 "//blimp/client/core/context:context_java",
106 "//blimp/client/core/feedback:feedback_java", 106 "//blimp/client/core/feedback:feedback_java",
107 "//blimp/client/core/settings:settings_java", 107 "//blimp/client/core/settings:settings_java",
108 "//blimp/client/core/switches:switches_java", 108 "//blimp/client/core/switches:switches_java",
109 "//device/geolocation:geolocation_java", 109 "//device/geolocation:geolocation_java",
110 ] 110 ]
111 } 111 }
112 112
113 java_group("dummy_core_java") { 113 java_group("dummy_core_java") {
114 visibility = [ ":*" ] 114 visibility = [ ":*" ]
115 115
116 deps = [ 116 deps = [
117 "//blimp/client/core/context:dummy_context_java", 117 "//blimp/client/core/context:dummy_context_java",
118 ] 118 ]
119 } 119 }
120 } 120 }
OLDNEW
« no previous file with comments | « blimp/client/app/session/test_client_session.cc ('k') | blimp/client/core/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698