You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
68 lines
1.7 KiB
#
|
|
# Copyright 2021 Google, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at:
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
source_set("LibBluetoothShimSources") {
|
|
sources = [
|
|
"acl.cc",
|
|
"acl_api.cc",
|
|
"acl_legacy_interface.cc",
|
|
"activity_attribution.cc",
|
|
"btm.cc",
|
|
"btm_api.cc",
|
|
"config.cc",
|
|
"controller.cc",
|
|
"dumpsys.cc",
|
|
"entry.cc",
|
|
"hci_layer.cc",
|
|
"l2c_api.cc",
|
|
"le_advertising_manager.cc",
|
|
"le_scanning_manager.cc",
|
|
"link_policy.cc",
|
|
"metric_id_api.cc",
|
|
"metrics_api.cc",
|
|
"shim.cc",
|
|
"stack.cc",
|
|
"utils.cc",
|
|
]
|
|
|
|
include_dirs = [
|
|
"//bt",
|
|
"//bt/btif/include",
|
|
"//bt/gd",
|
|
"//bt/gd/rust/shim",
|
|
"//bt/internal_include",
|
|
"//bt/stack/include",
|
|
"//bt/types",
|
|
]
|
|
|
|
deps = [
|
|
"//bt/gd:BluetoothGeneratedDumpsysDataSchema_h",
|
|
"//bt/gd:BluetoothGeneratedPackets_h",
|
|
"//bt/gd/common:BluetoothCommonSources",
|
|
"//bt/gd/dumpsys/bundler:BluetoothGeneratedBundlerSchema_h_bfbs",
|
|
"//bt/gd/hci:BluetoothHciSources",
|
|
"//bt/gd/os:BluetoothOsSources_linux_generic",
|
|
"//bt/gd/packet:BluetoothPacketSources",
|
|
"//bt/gd/rust/shim:libbluetooth_rust_interop",
|
|
"//bt/gd/rust/topshim:libbluetooth_topshim",
|
|
"//bt/osi",
|
|
"//bt/stack",
|
|
"//bt/types",
|
|
]
|
|
|
|
configs += [ "//bt:target_defaults" ]
|
|
}
|