blob: 3e9bf69b259a5e4a781976fcdbc4fcc6621e5e7d [file] [log] [blame]
# Copyright 2021 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.
source_set("testing") {
visibility = [ "../*" ]
testonly = true
sources = [
"adapter.cc",
"adapter.h",
"module.cc",
"module.h",
"process-proxy.cc",
"process-proxy.h",
"process.cc",
"process.h",
"target.cc",
"target.h",
]
public_deps = [
"../engine",
"../target:no_hooks",
"//src/sys/fuzzing/common",
"//src/sys/fuzzing/common/testing",
"//zircon/system/ulib/sync",
"//zircon/system/ulib/zx",
]
deps = [ "//sdk/lib/fdio" ]
}
executable("target") {
output_name = "component_fuzzing_test_target"
visibility = [ "//src/sys/fuzzing/*" ]
testonly = true
sources = [ "target-main.cc" ]
deps = [
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/zx",
]
}