blob: 582ce150fa8829104fc9f1509ba6206e70f9f04d [file] [log] [blame] [edit]
# 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 = [
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
"//src/lib/fsl",
"//src/lib/fxl",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-provider",
]
}
fuchsia_package_with_single_component("benchmark") {
manifest = "meta/benchmark.cml"
deps = [ ":benchmark_example" ]
}