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

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 Wez's #23 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 visibility = [ 150 visibility = [
151 "//blimp/client/*", 151 "//blimp/client/*",
152 "//blimp:blimp_unittests_java_deps", 152 "//blimp:blimp_unittests_java_deps",
153 ] 153 ]
154 154
155 deps = [ 155 deps = [
156 ":context_java", 156 ":context_java",
157 ":settings_java", 157 ":settings_java",
158 ":switches_java", 158 ":switches_java",
159 "//blimp/client/core/contents:contents_java", 159 "//blimp/client/core/contents:contents_java",
160 "//device/geolocation:geolocation_java",
160 ] 161 ]
161 } 162 }
162 163
163 android_library("dummy_core_java") { 164 android_library("dummy_core_java") {
164 visibility = [ ":*" ] 165 visibility = [ ":*" ]
165 166
166 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ] 167 java_files = [ "android/java/src/org/chromium/blimp/core/DummyBlimpClientCon text.java" ]
167 168
168 deps = [ 169 deps = [
169 "//base:base_java", 170 "//base:base_java",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 generate_jni("dummy_core_jni_headers") { 223 generate_jni("dummy_core_jni_headers") {
223 visibility = [ ":*" ] 224 visibility = [ ":*" ]
224 225
225 sources = [ 226 sources = [
226 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", 227 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java",
227 ] 228 ]
228 229
229 jni_package = "blimp/client/core" 230 jni_package = "blimp/client/core"
230 } 231 }
231 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698