blob: e2dd801289d068e5ead8529ab0d744df8c994ff0 [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("$zx/public/gn/fidl.gni")
if (is_fuchsia) {
test("fidl-simple") {
sources = [
"client_tests.c",
"fakesocket_tests.cpp",
"ldsvc_tests.c",
"server_tests.c",
"spaceship_tests.c",
"spaceship_tests.cpp",
]
deps = [
":fidl.test.fakesocket.c",
":fidl.test.spaceship.c",
"$zx/system/fidl/fuchsia-crash:c",
"$zx/system/fidl/fuchsia-ldsvc:c",
"$zx/system/fidl/fuchsia-mem:c",
"$zx/system/ulib/async",
"$zx/system/ulib/async:async-default",
"$zx/system/ulib/async-loop",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fidl",
"$zx/system/ulib/fidl-utils",
"$zx/system/ulib/ldmsg",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}
}
fidl_library("fidl.test.spaceship") {
visibility = [ ":*" ]
sources = [
"spaceship.test.fidl",
]
}
fidl_library("fidl.test.fakesocket") {
visibility = [ ":*" ]
sources = [
"fakesocket.test.fidl",
]
}