blob: 608e99604e8ba21de9d34efa4930aabc2441b31d [file] [log] [blame]
# 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/fidl/fidl.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
executable("bin") {
output_name = "lib_fidl_microbenchmarks"
testonly = true
sources = [
"benchmarks.cc",
"main.cc",
]
deps = [
"//src/tests/benchmarks/fidl/benchmark_suite:benchmark_suite_fidl",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fidl",
"//zircon/system/ulib/perftest",
]
libs = [ "zircon" ]
}
package("lib-fidl") {
testonly = true
deps = [ ":bin" ]
binaries = [
{
name = "lib_fidl_microbenchmarks"
shell = true
},
]
}