blob: 4dcbf57c6ee76dbf5aaac70e7d855bcac267448c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Utils static library for target
// ========================================================
cc_library_static {
name: "libbt-utils_qti",
defaults: ["fluoride_defaults_qti"],
local_include_dirs: [
"include",
],
include_dirs: [
"vendor/qcom/opensource/commonsys/system/bt",
"vendor/qcom/opensource/commonsys/system/bt/btcore/include",
"vendor/qcom/opensource/commonsys/system/bt/stack/include",
],
srcs: ["src/bt_utils.cc"],
static_libs: [
"libprocessgroup",
],
}
|