blob: a6e8e95ee72b026e9b2847e04408b29efb9a2c33 [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/unification/zx_library.gni")
group("tests") {
testonly = true
deps = [ "tests" ]
}
zx_library("rtc") {
sdk = "source"
sdk_headers = [ "librtc.h" ]
sources = [ "librtc.c" ]
deps = [
"//sdk/fidl/fuchsia.hardware.rtc:fuchsia.hardware.rtc_c",
"//src/devices/lib/driver",
"//src/lib/ddk",
]
}
zx_library("rtc_llcpp") {
sdk = "source"
sdk_headers = [ "librtc_llcpp.h" ]
sources = [ "librtc_llcpp.cc" ]
deps = [ "//sdk/fidl/fuchsia.hardware.rtc:fuchsia.hardware.rtc_llcpp" ]
}