blob: 3a21b03221da4a97e789f728d4fe58c913965d74 [file] [log] [blame]
# Copyright 2021 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.
source_set("fidl-metadata") {
deps = [
"//sdk/fidl/fuchsia.hardware.i2c.businfo:fuchsia.hardware.i2c.businfo_llcpp",
"//sdk/fidl/fuchsia.hardware.spi.businfo:fuchsia.hardware.spi.businfo_llcpp",
"//sdk/fidl/fuchsia.hardware.tee:fuchsia.hardware.tee_llcpp",
"//zircon/system/ulib/zx",
]
include_dirs = [ "." ]
sources = [
"i2c.cc",
"spi.cc",
"tee.cc",
]
# TODO(fxbug.dev/94768): This target uses mutable tables which are deprecated,
# rather than builders.
configs += [ "//build/cpp:fidl-wire-deprecated-mutable-tables" ]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}