blob: 2cd47c012f9aade7229053fdd7804115ce8c00bd [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-object-test" ]
}
zx_library("fake-object") {
sdk = "static"
sdk_headers = [ "lib/fake-object/object.h" ]
sdk_publishable = "internal"
sources = [
"fake-handle.cc",
"fake-object.cc",
]
public_deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
}