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