| # 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" ] |
| } |