blob: 5d985ce5fb12499c4c6e57ba21a8f687ac564e06 [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/fuzzer.gni")
group("fuzzer") {
testonly = true
deps = [
":example_fuzzers",
]
}
fuzz_package("example_fuzzers") {
targets = [ ":baz_fuzzer" ]
fuzz_host = true
}
fuzz_target("baz_fuzzer") {
sources = [ "target.cc" ]
deps = [ ":baz" ]
}
source_set("baz") {
sources = [ "baz.cc" ]
deps = [ "//src/lib/fxl" ]
}