blob: a3d675589477c4c4ecba61360d8053cfda35a9fa [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/package.gni")
group("all") {
testonly = true
public_deps = [
"//topaz/tests/benchmarks:input_latency",
"//topaz/tests/benchmarks:topaz_benchmarks",
# TODO(fxb/44682): re-enable
# "//topaz/tests/benchmarks/dart_inspect:dart_inspect_benchmarks",
]
}
group("input_latency") {
testonly = true
public_deps = [
"//garnet/tests/benchmarks/input_latency:garnet_input_latency_benchmarks",
"//topaz/tests/benchmarks/input_latency:topaz_input_latency_benchmarks",
]
}
executable("topaz_benchmarks_bin") {
output_name = "topaz_benchmarks"
sources = [ "benchmarks.cc" ]
deps = [ "//garnet/testing/benchmarking:benchmarking" ]
}
# Builds "benchmarks.sh" into a package that runs all Topaz benchmarks
# on CI.
package("topaz_benchmarks") {
testonly = true
deps = [ ":topaz_benchmarks_bin" ]
binaries = [
{
name = rebase_path("benchmarks.sh")
dest = "benchmarks.sh"
},
{
shell = true
name = "topaz_benchmarks"
},
]
}