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

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

Issue 2249283003: Hooks together Geolocation Feature in the Client and Engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lai
Patch Set: In response to Wez's #48 comments. Created 4 years, 3 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 sources = [ 95 sources = [
96 "blimp_client_context_impl.cc", 96 "blimp_client_context_impl.cc",
97 "blimp_client_context_impl.h", 97 "blimp_client_context_impl.h",
98 ] 98 ]
99 99
100 public_deps = [ 100 public_deps = [
101 "//base", 101 "//base",
102 "//blimp/client/core/contents", 102 "//blimp/client/core/contents",
103 "//blimp/client/core/session", 103 "//blimp/client/core/session",
104 "//blimp/client/public:public_headers", 104 "//blimp/client/public:public_headers",
105 "//device/geolocation:device_geolocation",
105 "//url", 106 "//url",
106 ] 107 ]
107 108
108 deps = [ 109 deps = [
109 ":switches", 110 ":switches",
111 "//blimp/client/core/geolocation",
110 "//blimp/client/core/settings", 112 "//blimp/client/core/settings",
111 ] 113 ]
112 114
113 if (is_android) { 115 if (is_android) {
114 sources += [ 116 sources += [
115 "android/blimp_client_context_impl_android.cc", 117 "android/blimp_client_context_impl_android.cc",
116 "android/blimp_client_context_impl_android.h", 118 "android/blimp_client_context_impl_android.h",
117 "android/blimp_jni_registrar.cc", 119 "android/blimp_jni_registrar.cc",
118 ] 120 ]
119 121
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 visibility = [ 162 visibility = [
161 "//blimp/client/*", 163 "//blimp/client/*",
162 "//blimp:blimp_unittests_java_deps", 164 "//blimp:blimp_unittests_java_deps",
163 ] 165 ]
164 166
165 deps = [ 167 deps = [
166 ":context_java", 168 ":context_java",
167 ":switches_java", 169 ":switches_java",
168 "//blimp/client/core/contents:contents_java", 170 "//blimp/client/core/contents:contents_java",
169 "//blimp/client/core/settings:settings_java", 171 "//blimp/client/core/settings:settings_java",
172 "//device/geolocation:geolocation_java",
170 ] 173 ]
171 } 174 }
172 175
173 android_library("dummy_core_java") { 176 android_library("dummy_core_java") {
174 visibility = [ ":*" ] 177 visibility = [ ":*" ]
175 178
176 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ] 179 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ]
177 180
178 deps = [ 181 deps = [
179 "//base:base_java", 182 "//base:base_java",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 generate_jni("dummy_core_jni_headers") { 232 generate_jni("dummy_core_jni_headers") {
230 visibility = [ ":*" ] 233 visibility = [ ":*" ]
231 234
232 sources = [ 235 sources = [
233 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", 236 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java",
234 ] 237 ]
235 238
236 jni_package = "blimp/client/core" 239 jni_package = "blimp/client/core"
237 } 240 }
238 } 241 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698