blob: 69cab394fcff3fe2d29389618664c6eab3a5acc0 [file] [log] [blame]
# Copyright 2017 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("benchmark_example") {
sources = [ "main.cc" ]
deps = []
public_deps = [
"//src/lib/fsl",
"//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("benchmark") {
manifest = "meta/benchmark.cmx"
deps = [ ":benchmark_example" ]
}