# # Copyright 2021 Google # # 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. # import("//common-mk/cxxbridge.gni") config("rust_topshim_config") { include_dirs = [ "//bt/gd/rust/topshim" ] } cxxbridge_header("btif_bridge_header") { sources = [ "src/btif.rs" ] all_dependent_configs = [ ":rust_topshim_config" ] deps = [":cxxlibheader"] } cxxbridge_cc("btif_bridge_code") { sources = [ "src/btif.rs" ] deps = [":btif_bridge_header"] configs = [ "//bt/gd:gd_defaults" ] } source_set("btif_cxx_bridge_code") { sources = [ "btif/btif_shim.cc" ] deps = [":btif_bridge_header"] configs += ["//bt/gd:gd_defaults"] } cxxbridge_libheader("cxxlibheader") { deps = [] } static_library("libbluetooth_topshim") { deps = [ ":btif_bridge_code", ":btif_cxx_bridge_code", ":cxxlibheader", ] }