blob: db6e3b5bae2964bc64b69c68300eaf2e1458a443 [file] [log] [blame]
# Copyright 2024 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/components.gni")
import("//build/test.gni")
executable("bin") {
output_name = "crasher_bin"
sources = [ "crasher.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
]
}
fuchsia_component("crasher-component") {
deps = [ ":bin" ]
component_name = "crasher"
manifest = "meta/crasher.cml"
}
fuchsia_package("crasher") {
deps = [ ":crasher-component" ]
}