blob: 5e3b174a0454301c2e545ff4296db5d42044e8a4 [file] [log] [blame]
# Copyright 2017 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/fidl/fidl.gni")
group("fidl") {
public_deps = [
":bluetooth",
":bluetooth_control",
":bluetooth_gatt",
":bluetooth_low_energy",
]
}
fidl("bluetooth") {
sources = [
"common.fidl",
]
}
fidl("bluetooth_control") {
sources = [
"control.fidl",
]
public_deps = [ ":bluetooth", ]
}
fidl("bluetooth_gatt") {
sources = [
"gatt.fidl",
]
public_deps = [ ":bluetooth", ]
}
fidl("bluetooth_low_energy") {
sources = [
"low_energy.fidl",
]
public_deps = [
":bluetooth",
":bluetooth_gatt",
]
}