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

Side by Side Diff: device/BUILD.gn

Issue 2100313003: bluetooth: Remove Context from Wrappers and use LocationUtils directly (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-location-utils
Patch Set: remove new line Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") # For generate_jni(). 9 import("//build/config/android/rules.gni") # For generate_jni().
10 } 10 }
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 225
226 generate_jni("bluetooth_test_jni_headers") { 226 generate_jni("bluetooth_test_jni_headers") {
227 sources = bluetooth_java_sources_needing_jni 227 sources = bluetooth_java_sources_needing_jni
228 jni_package = "bluetooth" 228 jni_package = "bluetooth"
229 } 229 }
230 230
231 android_library("bluetooth_test_java") { 231 android_library("bluetooth_test_java") {
232 java_files = bluetooth_java_sources_needing_jni 232 java_files = bluetooth_java_sources_needing_jni
233 deps = [ 233 deps = [
234 "//base:base_java", 234 "//base:base_java",
235 "//components/location/android:location_java",
235 "//device/bluetooth:java", 236 "//device/bluetooth:java",
236 ] 237 ]
237 } 238 }
238 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698