blob: 00abc234a0a55891b3346eaee1a6f78ac4c081de [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_service.test.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",
]
}