aboutsummaryrefslogtreecommitdiff
path: root/gps/batching/Android.bp
blob: 9182a0a0ede646b6e10abb505d582fda8925a833 (plain) (blame)
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
cc_library_shared {

    name: "libbatching",
    vendor: true,

    sanitize: GNSS_SANITIZE,

    shared_libs: [
        "libutils",
        "libcutils",
        "liblog",
        "libloc_core",
        "libgps.utils",
        "libdl",
    ],

    srcs: [
        "location_batching.cpp",
        "BatchingAdapter.cpp",
    ],

    header_libs: [
        "libgps.utils_headers",
        "libloc_core_headers",
        "libloc_pla_headers",
        "liblocation_api_headers",
    ],

    cflags: GNSS_CFLAGS,
}