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

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

Issue 2387813002: Move session into //blimp/client/app and update GN files. (Closed)
Patch Set: Rebased for good measure Created 4 years, 2 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
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 10 matching lines...) Expand all
21 ] 21 ]
22 } else { 22 } else {
23 deps = [ 23 deps = [
24 ":dummy_core", 24 ":dummy_core",
25 ] 25 ]
26 } 26 }
27 } 27 }
28 28
29 group("core") { 29 group("core") {
30 visibility = [ 30 visibility = [
31 "//blimp/client/*", 31 ":core_shim",
32 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
33 "//blimp/client/test",
32 "//blimp/test/*", 34 "//blimp/test/*",
33 ] 35 ]
34 36
35 deps = [ 37 deps = [
36 "//blimp/client/core/compositor", 38 "//blimp/client/core/compositor",
37 "//blimp/client/core/contents", 39 "//blimp/client/core/contents",
38 "//blimp/client/core/context", 40 "//blimp/client/core/context",
39 "//blimp/client/core/feedback", 41 "//blimp/client/core/feedback",
40 "//blimp/client/core/geolocation", 42 "//blimp/client/core/geolocation",
41 "//blimp/client/core/render_widget", 43 "//blimp/client/core/render_widget",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 ] 83 ]
82 } else { 84 } else {
83 deps = [ 85 deps = [
84 ":dummy_core_java", 86 ":dummy_core_java",
85 ] 87 ]
86 } 88 }
87 } 89 }
88 90
89 java_group("core_java") { 91 java_group("core_java") {
90 visibility = [ 92 visibility = [
91 "//blimp/client/*", 93 ":core_shim_java",
92 "//blimp:blimp_unittests_java_deps", 94 "//blimp/client:blimp_unittests_java_deps",
95 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
93 ] 96 ]
94 97
95 deps = [ 98 deps = [
96 "//blimp/client/core/contents:contents_java", 99 "//blimp/client/core/contents:contents_java",
97 "//blimp/client/core/context:context_java", 100 "//blimp/client/core/context:context_java",
98 "//blimp/client/core/feedback:feedback_java", 101 "//blimp/client/core/feedback:feedback_java",
99 "//blimp/client/core/settings:settings_java", 102 "//blimp/client/core/settings:settings_java",
100 "//blimp/client/core/switches:switches_java", 103 "//blimp/client/core/switches:switches_java",
101 "//device/geolocation:geolocation_java", 104 "//device/geolocation:geolocation_java",
102 ] 105 ]
103 } 106 }
104 107
105 java_group("dummy_core_java") { 108 java_group("dummy_core_java") {
106 visibility = [ ":*" ] 109 visibility = [ ":*" ]
107 110
108 deps = [ 111 deps = [
109 "//blimp/client/core/context:dummy_context_java", 112 "//blimp/client/core/context:dummy_context_java",
110 ] 113 ]
111 } 114 }
112 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698