-
Notifications
You must be signed in to change notification settings - Fork 3
/
Android.bp
68 lines (56 loc) · 1.7 KB
/
Android.bp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
soong_namespace {
}
// MAP API module
java_library {
name: "bluetooth_qti.mapsapi",
srcs: ["lib/mapapi/**/*.java"],
}
// Bluetooth APK
android_app {
name: "BluetoothQti",
overrides: ["Bluetooth"],
srcs: [
"src/**/*.java",
":vendor_qcom_opensource_commonsys_bluetooth_ext_packages_apps_bluetooth_ext",
":statslog-bluetooth_qti-java-gen",
],
platform_apis: true,
certificate: "platform",
jni_libs: ["libbluetooth_qti_jni"],
libs: [
"javax.obex",
"telephony-common",
"services.net",
],
static_libs: [
"com.android.vcard",
"bluetooth_qti.mapsapi",
"sap-api-java-static",
"services.net",
"libprotobuf-java-lite",
"bluetooth-protos-lite",
"androidx.core_core",
"androidx.lifecycle_lifecycle-livedata",
"androidx.room_room-runtime",
],
plugins: [
"androidx.room_room-compiler-plugin",
],
// Add in path to Bluetooth directory because local path does not exist
// KEYSTONE(I16437f5eaa56279e11743c243fb26f71eb1bd6f8,b/153751857)
javacflags: ["-Aroom.schemaLocation=vendor/qcom/opensource/commonsys/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/storage/schemas"],
optimize: {
enabled: false,
},
required: ["libbluetooth_qti"],
proto: {
type: "micro",
},
}
genrule {
name: "statslog-bluetooth_qti-java-gen",
tools: ["stats-log-api-gen"],
cmd: "$(location stats-log-api-gen) --java $(out) --module bluetooth"
+ " --javaPackage com.android.bluetooth --javaClass BluetoothStatsLog --worksource",
out: ["com/android/bluetooth/BluetoothStatsLog.java"],
}