blob: c9a5b7b5a1763b42c383e41e226de843da3f50d3 [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("thread-state") {
output_name = "thread-state-test"
sources = [ "thread-state.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/test-utils",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("thread-state-bootfs-test") {
name = "thread-state-test"
deps = [ ":thread-state" ]
}