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

Unified Diff: device/bluetooth/BUILD.gn

Issue 2499913002: bluetooth: android: Implement RetrieveGattConnectedDevicesWithFilter
Patch Set: Comment why BluetoothDeviceWrapper is in a separate file Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/BUILD.gn
diff --git a/device/bluetooth/BUILD.gn b/device/bluetooth/BUILD.gn
index 35f3f9a0dcbf0c2fcb2fbfa745e733113d66d601..0d6b04ee9711412f58cd2427bba089a3fbec8a14 100644
--- a/device/bluetooth/BUILD.gn
+++ b/device/bluetooth/BUILD.gn
@@ -394,6 +394,7 @@ if (is_android) {
java_sources_needing_jni = [
"android/java/src/org/chromium/device/bluetooth/ChromeBluetoothAdapter.java",
"android/java/src/org/chromium/device/bluetooth/ChromeBluetoothDevice.java",
+ "android/java/src/org/chromium/device/bluetooth/ChromeBluetoothManager.java",
"android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattCharacteristic.java",
"android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattDescriptor.java",
"android/java/src/org/chromium/device/bluetooth/ChromeBluetoothRemoteGattService.java",
@@ -406,10 +407,11 @@ if (is_android) {
}
android_library("java") {
- java_files = java_sources_needing_jni
+ java_files = java_sources_needing_jni + [ "android/java/src/org/chromium/device/bluetooth/BluetoothDeviceWrapper.java" ]
deps = [
"//base:base_java",
"//components/location/android:location_java",
+ "//third_party/android_tools:android_support_annotations_java",
]
}
}

Powered by Google App Engine
This is Rietveld 408576698