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