Michael Bestas | 3a0209e | 2023-05-04 01:15:47 +0300 | [diff] [blame] | 1 | |
2 | |||||
3 | cc_library_shared { | ||||
4 | |||||
5 | name: "libgnss", | ||||
6 | vendor: true, | ||||
7 | |||||
8 | |||||
9 | |||||
10 | shared_libs: [ | ||||
11 | "libutils", | ||||
12 | "libcutils", | ||||
13 | "libdl", | ||||
14 | "liblog", | ||||
15 | "libloc_core", | ||||
16 | "libgps.utils", | ||||
17 | ], | ||||
18 | |||||
19 | srcs: [ | ||||
20 | "location_gnss.cpp", | ||||
21 | "GnssAdapter.cpp", | ||||
22 | "Agps.cpp", | ||||
23 | "XtraSystemStatusObserver.cpp", | ||||
24 | "NativeAgpsHandler.cpp", | ||||
25 | ], | ||||
26 | |||||
27 | cflags: ["-fno-short-enums"] + GNSS_CFLAGS, | ||||
28 | header_libs: [ | ||||
29 | "libgps.utils_headers", | ||||
30 | "libloc_core_headers", | ||||
31 | "libloc_pla_headers", | ||||
32 | "liblocation_api_headers", | ||||
33 | ], | ||||
34 | |||||
35 | } |