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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
cc_library_headers {
name: "libese_client_headers",
export_include_dirs: [
"inc",
"jcos_client/inc",
"ls_client/inc",
],
vendor_available: true,
}
cc_library_shared {
name: "se_nq_extn_client",
defaults: ["hidl_defaults"],
vendor: true,
srcs: [
"utils/phNxpConfig.cc",
"utils/sparse_crc32.cc",
"src/eSEClientIntf.cc",
"src/phNxpLog.cc"
],
local_include_dirs: [
"inc",
"utils",
"jcos_client/inc",
"ls_client/inc",
],
shared_libs: [
"libbase",
"libcutils",
"libdl",
"libhidlbase",
"liblog",
"libutils",
"libchrome",
"libdl",
"libhidlbase",
],
}
cc_library_shared {
name: "jcos_nq_client",
defaults: ["hidl_defaults"],
vendor: true,
srcs: [
"jcos_client/src/JcDnld.cpp",
"jcos_client/src/JcopOsDownload.cpp",
],
local_include_dirs: [
"inc",
"utils",
"jcos_client/inc",
],
shared_libs: [
"libbase",
"libcutils",
"libdl",
"libhidlbase",
"liblog",
"libutils",
"libchrome",
"libdl",
"libhidlbase",
],
}
cc_library_shared {
name: "ls_nq_client",
defaults: ["hidl_defaults"],
vendor: true,
srcs: [
"ls_client/src/LsClient.cpp",
"ls_client/src/LsLib.cpp",
],
local_include_dirs: [
"inc",
"utils",
"ls_client/inc",
],
shared_libs: [
"libbase",
"libcutils",
"libdl",
"libhidlbase",
"liblog",
"libutils",
"libchrome",
"libdl",
"libhidlbase",
"se_nq_extn_client"
],
}
cc_library_shared {
name: "nfc_nci.nqx.default.hw",
defaults: ["hidl_defaults"],
vendor: true,
srcs: [
"halimpl/common/*.cc",
"halimpl/dnld/*.cc",
"halimpl/hal/*.cc",
"halimpl/log/*.cc",
"halimpl/self-test/*.cc",
"halimpl/src/adaptation/EseAdaptation.cpp",
"halimpl/tml/*.cc",
"halimpl/utils/*.cc",
"halimpl/utils/*.cpp",
"halimpl/configs/*.cpp",
"halimpl/mifare/*.cc",
],
shared_libs: [
"libbase",
"libcutils",
"liblog",
"libhardware",
"libhardware_legacy",
"libhidlbase",
"libutils",
"android.hardware.nfc@1.0",
"android.hardware.nfc@1.1",
"android.hardware.nfc@1.2",
"vendor.nxp.hardware.nfc@1.0",
"vendor.nxp.hardware.nfc@1.1",
"vendor.nxp.hardware.nfc@2.0",
"android.hardware.secure_element@1.0",
"vendor.nxp.nxpnfclegacy@1.0",
"hal_libnfc"
],
local_include_dirs: [
"halimpl/dnld",
"halimpl/hal",
"halimpl/log",
"halimpl/self-test",
"halimpl/tml",
"halimpl/src/include",
"halimpl/configs",
"jcos_client/inc",
],
export_include_dirs: [
"extns/impl/nxpnfc/2.0/",
"halimpl/inc",
"halimpl/common",
"halimpl/utils",
"halimpl/hal",
"halimpl/mifare",
"halimpl/ese-clients/inc",
"halimpl/configs",
"halimpl/tml",
],
cflags: [
"-DBUILDCFG=1",
"-Wall",
"-Werror",
"-Wno-implicit-fallthrough",
"-DNFC_HAL_TARGET=TRUE",
"-DNFC_RW_ONLY=TRUE",
"-DNXP_EXTNS=TRUE",
"-DNFC_NXP_AID_MAX_SIZE_DYN=TRUE",
"-DNXP_NFCC_HCE_F=TRUE",
"-DNFC_NXP_LISTEN_ROUTE_TBL_OPTIMIZATION=TRUE",
"-DNFC_NXP_HFO_SETTINGS=FALSE",
"-DANDROID",
"-DNXP_HW_SELF_TEST"
],
}
|