blob: 8c076917dca66765929a14769279af0fe0b53228 [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/components.gni")
executable("bin") {
output_name = "transparency_benchmark"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.ui.app",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/fidl/fuchsia.ui.scenic",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp:cpp",
"//sdk/lib/ui/scenic/cpp:cpp",
"//src/lib/fxl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/trace-provider",
]
}
fuchsia_package_with_single_component("transparency_benchmark") {
manifest = "meta/transparency_benchmark.cmx"
deps = [ ":bin" ]
}