blob: 7509c664248f8ed0917ce3520a6dde46291b823a [file] [log] [blame]
# Copyright 2019 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")
executable("bin") {
output_name = "transparency_benchmark"
sources = [
"main.cc",
]
deps = [
"//garnet/public/lib/component/cpp",
"//sdk/fidl/fuchsia.ui.app",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/fidl/fuchsia.ui.scenic",
"//sdk/lib/sys/cpp:cpp",
"//sdk/lib/ui/scenic/cpp:cpp",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/trace-provider",
]
}
package("transparency_benchmark") {
deps = [
":bin",
]
binary = "transparency_benchmark"
meta = [
{
path = rebase_path("meta/transparency_benchmark.cmx")
dest = "transparency_benchmark.cmx"
},
]
}