blob: 0cb9f2573012567dc8021f692b68d3462cdc2ccd [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("//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",
]
}
fuchsia_package_with_single_component("trace_stress") {
manifest = "meta/trace_stress.cmx"
deps = [ ":bin" ]
}