1#
2#  Copyright 2021 Google
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#
16
17source_set("libbluetooth_common") {
18  sources = [
19    "bluetooth/a2dp_codec_config.cc",
20    "bluetooth/adapter_state.cc",
21    "bluetooth/advertise_data.cc",
22    "bluetooth/advertise_settings.cc",
23    "bluetooth/avrcp_int_value.cc",
24    "bluetooth/avrcp_media_attr.cc",
25    "bluetooth/avrcp_register_notification_response.cc",
26    "bluetooth/characteristic.cc",
27    "bluetooth/descriptor.cc",
28    "bluetooth/remote_device_props.cc",
29    "bluetooth/scan_filter.cc",
30    "bluetooth/scan_result.cc",
31    "bluetooth/scan_settings.cc",
32    "bluetooth/service.cc",
33    "bluetooth/util/atomic_string.cc",
34  ]
35
36  include_dirs = [
37    ".",
38    "//bt",
39  ]
40
41  configs += ["//bt:target_defaults"]
42}
43