blob: 79266d2f44cf0aec6e142081ceadd08dd5c2ad2f [file] [log] [blame]
# Copyright 2018 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("//src/sys/build/components.gni")
executable("bin") {
output_name = "trace_stress"
sources = [ "main.cc" ]
deps = [
"//src/lib/fxl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-provider:trace-provider-with-fdio",
]
}
fuchsia_package_with_single_component("trace_stress") {
manifest = "meta/trace_stress.cmx"
deps = [ ":bin" ]
}