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

Side by Side Diff: device/bluetooth/BUILD.gn

Issue 2499913002: bluetooth: android: Implement RetrieveGattConnectedDevicesWithFilter
Patch Set: rebase Created 4 years 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
« no previous file with comments | « no previous file | device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothManager.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 4 import("//build/config/features.gni")
5 5
6 if (is_android) { 6 if (is_android) {
7 import("//build/config/android/rules.gni") # For generate_jni(). 7 import("//build/config/android/rules.gni") # For generate_jni().
8 } 8 }
9 9
10 config("bluetooth_config") { 10 config("bluetooth_config") {
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 "//base", 387 "//base",
388 "//net", 388 "//net",
389 "//testing/gmock", 389 "//testing/gmock",
390 ] 390 ]
391 } 391 }
392 392
393 if (is_android) { 393 if (is_android) {
394 java_sources_needing_jni = [ 394 java_sources_needing_jni = [
395 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" , 395 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java" ,
396 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java", 396 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java",
397 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothManager.java" ,
397 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCha racteristic.java", 398 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCha racteristic.java",
398 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattDes criptor.java", 399 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattDes criptor.java",
399 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattSer vice.java", 400 "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattSer vice.java",
400 "android/java/src/org/chromium/device/bluetooth/Wrappers.java", 401 "android/java/src/org/chromium/device/bluetooth/Wrappers.java",
401 ] 402 ]
402 403
403 generate_jni("jni_headers") { 404 generate_jni("jni_headers") {
404 sources = java_sources_needing_jni 405 sources = java_sources_needing_jni
405 jni_package = "bluetooth" 406 jni_package = "bluetooth"
406 } 407 }
407 408
408 android_library("java") { 409 android_library("java") {
409 java_files = java_sources_needing_jni 410 java_files = java_sources_needing_jni
410 deps = [ 411 deps = [
411 "//base:base_java", 412 "//base:base_java",
412 "//components/location/android:location_java", 413 "//components/location/android:location_java",
414 "//third_party/android_tools:android_support_annotations_java",
413 ] 415 ]
414 } 416 }
415 } 417 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/android/java/src/org/chromium/device/bluetooth/ChromeBluetoothManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698