| # Copyright 2023 The Fuchsia Authors | |
| # | |
| # Use of this source code is governed by a MIT-style | |
| # license that can be found in the LICENSE file or at | |
| # https://opensource.org/licenses/MIT | |
| import("//build/cpp/library_headers.gni") | |
| library_headers("headers") { | |
| headers = [ "pdev/timer.h" ] | |
| } | |
| source_set("timer") { | |
| sources = [ "timer.cc" ] | |
| public_deps = [ ":headers" ] | |
| deps = [ "//zircon/kernel/lib/arch" ] | |
| } |