1// Utils static library for target
2// ========================================================
3package {
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "system_bt_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-Apache-2.0
9    default_applicable_licenses: ["system_bt_license"],
10}
11
12cc_library_static {
13    name: "libbt-utils",
14    defaults: ["fluoride_defaults"],
15    local_include_dirs: [
16        "include",
17    ],
18    include_dirs: [
19        "system/bt",
20        "system/bt/btcore/include",
21        "system/bt/stack/include",
22    ],
23    srcs: ["src/bt_utils.cc"],
24    shared_libs: [
25        "libprocessgroup",
26    ],
27    host_supported: true,
28}
29