1//
2// Copyright (C) 2021 The Android Open-Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8//      http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16soong_namespace {}
17
18prebuilt_defaults {
19    name: "conf_defaults",
20    vendor: true,
21    sub_dir: "uwb",
22}
23
24prebuilt_etc {
25    name: "configuration.conf",
26    src: "configuration.conf",
27    defaults: ["conf_defaults"],
28}
29
30prebuilt_etc {
31    name: "calibration.conf",
32    src: "calibration.conf",
33    defaults: ["conf_defaults"],
34}
35
36prebuilt_etc {
37    name: "calibration-default.conf",
38    src: "calibration-default.conf",
39    defaults: ["conf_defaults"],
40}
41
42prebuilt_etc {
43    name: "calibration-CE.conf",
44    src: "calibration-CE.conf",
45    defaults: ["conf_defaults"],
46}
47
48prebuilt_etc {
49    name: "calibration-FCC.conf",
50    src: "calibration-FCC.conf",
51    defaults: ["conf_defaults"],
52}
53
54prebuilt_etc {
55    name: "calibration-JP.conf",
56    src: "calibration-JP.conf",
57    defaults: ["conf_defaults"],
58}
59
60prebuilt_etc {
61    name: "calibration-TW.conf",
62    src: "calibration-TW.conf",
63    defaults: ["conf_defaults"],
64}
65
66prebuilt_etc {
67    name: "calibration-RESTRICTED.conf",
68    src: "calibration-RESTRICTED.conf",
69    defaults: ["conf_defaults"],
70}
71
72