blob: 917d9ae3728553796b997c0b6c629b9365cc3e16 [file] [log] [blame]
# Copyright 2019 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/zircon/zx_library.gni")
group("tests") {
testonly = true
deps = [ "tests" ]
}
zx_library("rtc") {
sdk = "source"
sdk_headers = [ "librtc.h" ]
sources = [ "librtc.c" ]
public_deps = [ "//zircon/system/public" ]
}
zx_library("rtc_llcpp") {
sdk = "source"
sdk_headers = [ "librtc_llcpp.h" ]
sources = [ "librtc_llcpp.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.rtc:fuchsia.hardware.rtc_cpp",
"//src/devices/lib/driver",
"//src/lib/ddk",
]
}