blob: 1d4c91d85397989cc6f77ff2780cf58352a6c412 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
soong_namespace {
}
// Bluetooth bt_stack.conf config file
// ========================================================
//prebuilt_etc {
// name: "bt_stack.conf",
//
// src: "bt_stack.conf",
// sub_dir: "bluetooth",
//
//}
// Bluetooth bt_did.conf config file
// ========================================================
//include $(CLEAR_VARS)
//LOCAL_MODULE := bt_did.conf
//LOCAL_MODULE_CLASS := ETC
//LOCAL_MODULE_PATH := $(TARGET_OUT)/etc/bluetooth
//LOCAL_MODULE_TAGS := optional
//LOCAL_SRC_FILES := $(LOCAL_MODULE)
//include $(BUILD_PREBUILT)
// Bluetooth interop_database.conf config file
// ========================================================
prebuilt_etc {
name: "interop_database.conf",
src: ":interop_database_conf_qti",
sub_dir: "bluetooth",
system_ext_specific: true,
}
// Bluetooth bt_profile.conf config file
// ========================================================
prebuilt_etc {
name: "bt_profile.conf",
src: ":bt_profile_conf_qti",
sub_dir: "bluetooth",
system_ext_specific: true,
}
|