blob: b9c7bd1ea075212cbe80be759ba7f513d033f6d0 [file] [log] [blame] [edit]
# 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("fake-resource-test-bin") {
if (is_fuchsia) {
fdio_config = [ "//build/config/fuchsia:fdio_config" ]
if (configs + fdio_config - fdio_config != configs) {
configs -= fdio_config
}
}
output_name = "fake-resource-test"
sources = [ "fake-resource-test.cc" ]
deps = [
"//src/devices/testing/fake-object",
"//src/devices/testing/fake-resource",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxc",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("fake-resource-test") {
deps = [ ":fake-resource-test-bin" ]
}