blob: df660a03e7c567da099226b5c9010292cf5677f4 [file] [log] [blame]
# Copyright 2025 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("dump_headers") {
headers = [ "lib/dump/depth_printer.h" ]
public_deps = [ "//zircon/system/ulib/zircon-internal" ]
}
source_set("dump") {
sources = [ "dump.cc" ]
public_deps = [ ":dump_headers" ]
deps = [ "tests" ]
}
group("tests") {
testonly = true
}
group("kernel-tests") {
# TODO: testonly = true
}
group("phys-tests") {
testonly = true
}
group("boot_tests") {
testonly = true
}