blob: 290ea686dc2b20549f2aa335a7ed9ffca8241f2d [file] [log] [blame]
# Copyright 2019 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/interrupt.h" ]
public_deps = [
# <pdev/interrupt.h> has #include <dev/interrupt.h>.
"//zircon/kernel/dev/interrupt:headers",
]
}
source_set("interrupt") {
sources = [ "interrupt.cc" ]
public_deps = [ ":headers" ]
deps = [
"//zircon/kernel/lib/arch",
"//zircon/kernel/lib/init",
]
}