blob: 71f180d5183db34564301554428e997ee8651b41 [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/assembly/bootfs_files_for_assembly.gni")
executable("evil") {
visibility = [ ":*" ]
output_name = "evil-tests"
sources = [ "evil.c" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":evil" ]
}