blob: fa2af15242179e2a786fed18d79c4acd8f095fbe [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("//src/sys/build/components.gni")
group("benchmarks") {
testonly = true
deps = [
":kernel-boot-benchmarks",
"//src/tests/benchmarks/fidl:benchmarks",
]
}
executable("kernel-boot-timeline") {
testonly = true
sources = [ "kernel_boot_timeline.cc" ]
deps = [
"//sdk/fidl/fuchsia.kernel",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/inspect/cpp",
"//zircon/public/lib/fbl",
"//zircon/system/ulib/perftest",
]
}
fuchsia_shell_package("kernel-boot-benchmarks") {
testonly = true
deps = [ ":kernel-boot-timeline" ]
}