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

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: Addresses nyquist's #32 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 visibility = [ 160 visibility = [
161 "//blimp/client/*", 161 "//blimp/client/*",
162 "//blimp:blimp_unittests_java_deps", 162 "//blimp:blimp_unittests_java_deps",
163 ] 163 ]
164 164
165 deps = [ 165 deps = [
166 ":context_java", 166 ":context_java",
167 ":switches_java", 167 ":switches_java",
168 "//blimp/client/core/contents:contents_java", 168 "//blimp/client/core/contents:contents_java",
169 "//blimp/client/core/settings:settings_java", 169 "//blimp/client/core/settings:settings_java",
170 "//device/geolocation:geolocation_java",
170 ] 171 ]
171 } 172 }
172 173
173 android_library("dummy_core_java") { 174 android_library("dummy_core_java") {
174 visibility = [ ":*" ] 175 visibility = [ ":*" ]
175 176
176 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ] 177 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ]
177 178
178 deps = [ 179 deps = [
179 "//base:base_java", 180 "//base:base_java",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 generate_jni("dummy_core_jni_headers") { 230 generate_jni("dummy_core_jni_headers") {
230 visibility = [ ":*" ] 231 visibility = [ ":*" ]
231 232
232 sources = [ 233 sources = [
233 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", 234 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java",
234 ] 235 ]
235 236
236 jni_package = "blimp/client/core" 237 jni_package = "blimp/client/core"
237 } 238 }
238 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698