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