blob: 5494e82394abe16a12111a69840c16416a3737f0 [file] [log] [blame]
# Copyright 2018 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/fidl/fidl.gni")
import("//build/package.gni")
fidl("compatibility_test_service") {
name = "fidl.test.compatibility"
sources = [
"compatibility_test_service.fidl",
]
}
source_set("echo_client_app") {
sources = [
"echo_client_app.cc",
"echo_client_app.h",
]
deps = [
":compatibility_test_service",
"//sdk/lib/sys/cpp",
"//zircon/public/lib/zx",
]
}