blob: 7d1fba0fe77b8350e7524d0d8eba96cc97e0e126 [file] [log] [blame] [edit]
# Copyright 2020 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")
import("//build/fidl/fidl.gni")
import("//build/testing/environments.gni")
import("//src/tests/benchmarks/fidl/benchmark_suite/benchmark_suite.gni")
executable("bin") {
output_name = "lib_fidl_microbenchmarks"
testonly = true
sources = [
"benchmarks.cc",
"main.cc",
]
deps = [
"${benchmark_suite_fidl_target}_hlcpp",
"//sdk/lib/fidl",
"//sdk/lib/utf-utils",
"//src/zircon/lib/zircon",
"//zircon/system/ulib/perftest",
]
}
fuchsia_shell_package("lib-fidl") {
testonly = true
deps = [ ":bin" ]
}