blob: a411c520dfa7f0afe70a383eca6aa9e22d614b08 [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/zircon/migrated_targets.gni")
zx_library("page_tables") {
kernel = true
sources = [ "page_tables.cc" ]
deps = [ "//zircon/kernel/lib/fbl" ]
public_deps = [
# <arch/x86/page_tables/page_tables.h> has #include <hwreg/bitfields.h>.
"//zircon/system/ulib/hwreg:headers",
]
}