blob: f39131e5102ee0cd1fdaa5eaf7bb306b3e574365 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config.gni")
import("//build/rust/rustc_binary.gni")
import("//src/sys/build/components.gni")
rustc_binary("bin") {
name = "bt_hfp_audio_gateway"
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.bluetooth.bredr:fuchsia.bluetooth.bredr-rustc",
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//src/lib/diagnostics/inspect/rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:bitflags",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:thiserror",
]
test_deps = [
"//sdk/fidl/fuchsia.bluetooth:fuchsia.bluetooth-rustc",
"//third_party/rust_crates:matches",
]
sources = [
"src/config.rs",
"src/error.rs",
"src/main.rs",
"src/profile.rs",
"src/service_definitions.rs",
]
}
# A default configuration for bt-hfp-audio-gateway. There is no stability guarantee
# provided with the default config. It should only be used for local development and testing
# purposes. A product integrator should always define a product specific configuration.
config_data("default_config") {
for_pkg = "bt-hfp-audio-gateway"
sources = [ "config/default_supported_features.config" ]
outputs = [ "supported_features.config" ]
}
# A test configuration that can be used to check that configuration
# parsing is wired up correctly and that the config file is in the
# expected format.
config_data("test_config") {
for_pkg = "bt-hfp-audio-gateway-tests"
sources = [ "config/default_supported_features.config" ]
outputs = [ "supported_features.config" ]
}
fuchsia_component("component") {
deps = [ ":bin" ]
manifest = "meta/bt-hfp-audio-gateway.cmx"
}
fuchsia_package("bt-hfp-audio-gateway") {
deps = [ ":component" ]
}
fuchsia_unittest_package("bt-hfp-audio-gateway-tests") {
deps = [
":bin_test",
":test_config",
]
manifest = "meta/bt-hfp-audio-gateway-unittests.cmx"
}
# This group can be used for local development environments when the user does not care
# precisely what configuration is used.
group("bt-hfp-audio-gateway-default") {
deps = [
":bt-hfp-audio-gateway",
":default_config",
]
}
group("tests") {
testonly = true
deps = [ ":bt-hfp-audio-gateway-tests" ]
}