| # 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/components.gni") |
| import("//build/test.gni") |
| |
| test("devfs") { |
| sources = [ |
| "fdio-tests.cc", |
| "fidl-tests.cc", |
| ] |
| deps = [ |
| "//sdk/fidl/fuchsia.io:fuchsia.io_llcpp", |
| "//sdk/lib/fdio", |
| "//zircon/system/ulib/fbl", |
| "//zircon/system/ulib/zx", |
| "//zircon/system/ulib/zxtest", |
| ] |
| } |
| |
| fuchsia_unittest_package("devfs-test") { |
| manifest = "meta/devfs-test.cmx" |
| deps = [ ":devfs" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| public_deps = [ ":devfs-test" ] |
| } |