| # 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("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", |
| ] |
| } |
| |
| package("kernel-boot-benchmarks") { |
| testonly = true |
| binaries = [ |
| { |
| shell = true |
| name = "kernel-boot-timeline" |
| }, |
| ] |
| deps = [ ":kernel-boot-timeline" ] |
| } |