blob: 40b1d9669a19ca58ae21de558cbc1f99153ad7ba [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("//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",
]
}
fuchsia_package_with_single_component("benchmark") {
manifest = "meta/benchmark.cml"
deps = [ ":benchmark_example" ]
}