| # 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-object-package" ] |
| } |
| |
| zx_library("fake-object") { |
| sdk = "static" |
| sdk_headers = [ "lib/fake-object/object.h" ] |
| testonly = true |
| shared = true |
| sources = [ |
| "fake-handle.cc", |
| "fake-object.cc", |
| ] |
| public_deps = [ |
| "//zircon/public/lib/zircon-internal", |
| "//zircon/public/lib/zxc", |
| ] |
| deps = [ |
| "//sdk/lib/fdio", |
| "//zircon/public/lib/fbl", |
| "//zircon/public/lib/zircon-internal", |
| "//zircon/public/lib/zx", |
| ] |
| configs += [ "//build/config/fuchsia:static_cpp_standard_library" ] |
| } |