blob: d80dc0b5037593d1cf08e09012963023c7499da9 [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.
import("//build/zircon/zx_library.gni")
zx_library("clock") {
sdk = "source"
sdk_publishable = false
sdk_name = "clock"
sdk_headers = [
"clock/lib/banjo/clock/c/banjo.h",
"clock/lib/banjo/clock/cpp/banjo.h",
]
sources = [ "cpp/banjo.h" ]
public_deps = [
# <ddk/usb/usb.h> has #include <fuchsia/hardware/clock/c/banjo.h>.
"//src/lib/ddk",
]
deps = [
"//src/lib/ddk",
"//src/lib/ddktl",
]
}