blob: e077236f70530d5bd3101cd43ab87e39d570174a [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/zircon/zx_library.gni")
group("tests") {
testonly = true
deps = [ "test:fake-resource-test" ]
}
zx_library("fake-resource") {
sdk = "static"
sdk_headers = [ "lib/fake-resource/resource.h" ]
testonly = true
sources = [ "fake-resource.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/devices/testing/fake-object",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
configs += [ "//build/config/fuchsia:static_cpp_standard_library" ]
}