blob: e0bf9141814c7fabc19281ab1cdd36a52bb3181f [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/fuzzing/fidl_protocol_fuzzer.gni")
source_set("echo_server_provider") {
testonly = true
sources = [ "echo_server_provider.cc" ]
public_deps = [
"//examples/fidl/fuchsia.examples",
"//sdk/lib/fidl/cpp",
"//sdk/lib/fidl/cpp/fuzzing",
"//sdk/lib/sys/cpp",
]
}
fidl_protocol_fuzzer("echo-fuzzer") {
fidl = "//examples/fidl/fuchsia.examples:fuchsia.examples"
protocol = "fuchsia.examples.Echo"
deps = [ ":echo_server_provider" ]
}