blob: fb4af2dcd19a39a976f087ae9f404f8fa6a8deda [file] [log] [blame]
Michael Bestas3a0209e2023-05-04 01:15:47 +03001
2cc_library_shared {
3
4 name: "liblocation_api",
5 vendor: true,
6
7
8
9 shared_libs: [
10 "libutils",
11 "libcutils",
12 "libgps.utils",
13 "libdl",
14 "liblog",
15 ],
16
17 srcs: [
18 "LocationAPI.cpp",
19 "LocationAPIClientBase.cpp",
20 ],
21
22 cflags: ["-fno-short-enums"] + GNSS_CFLAGS,
23
24 header_libs: [
25 "libloc_pla_headers",
26 "libgps.utils_headers",
27 ],
28
29}
30
31cc_library_headers {
32
33 name: "liblocation_api_headers",
34 export_include_dirs: ["."],
35 vendor: true,
36}