-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
49 lines (40 loc) · 1.2 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
genrule {
name: "statslog-st-Nfc-java-gen",
tools: ["stats-log-api-gen"],
cmd: "$(location stats-log-api-gen) --java $(out) --module nfc --javaPackage com.android.nfc"
+ " --javaClass NfcStatsLog",
out: ["com/android/nfc/NfcStatsLog.java"],
}
//########################################
//# ST Configuration
//########################################
android_app {
name: "Nfc_st",
srcs: ["src/**/*.java"] + ["st/**/*.java"] + ["st_dta/**/*.java"] + [
"nci/src/com/android/nfc/dhimpl/NativeLlcpConnectionlessSocket.java",
"nci/src/com/android/nfc/dhimpl/NativeLlcpServiceSocket.java",
"nci/src/com/android/nfc/dhimpl/NativeLlcpSocket.java",
"nci/src/com/android/nfc/dhimpl/NativeP2pDevice.java",
":statslog-st-Nfc-java-gen",
],
owner: "st",
overrides: [
"Nfc",
"NfcNci",
],
platform_apis: true,
certificate: "platform",
system_ext_specific: true,
jni_libs: [
"libstnfc_nci_jni",
"libnfc_st_dta_jni",
],
libs: [
"com.st.android.nfc_extensions",
],
static_libs: ["androidx.appcompat_appcompat",
],
optimize: {
enabled: false,
},
}