blob: c28ed206b7e3a66c8667576b03f888a213e4a429 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/test.gni")
import("//build/testing/bootfs_test.gni")
test("task-utils") {
output_name = "task-utils-test"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "walker.cc" ]
deps = [
"//sdk/fidl/fuchsia.sysinfo:fuchsia.sysinfo_c",
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/task-utils",
]
}
bootfs_test("task-utils-bootfs-test") {
name = "task-utils-test"
deps = [ ":task-utils" ]
}