blob: cb498024db85ae4568d87ba34975bb7755503158 [file] [log] [blame]
# Copyright 2020 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.
# this has to match the binary name in examples/ui/Build.gn
executable("frame-compression") {
output_name = "frame-compression"
sources = [
"base_view.cc",
"base_view.h",
"compute_view.cc",
"compute_view.h",
"main.cc",
"software_view.cc",
"software_view.h",
]
deps = [
"//sdk/fidl/fuchsia.sysmem",
"//sdk/fidl/fuchsia.ui.scenic",
"//sdk/lib/fidl/cpp",
"//sdk/lib/images/cpp",
"//sdk/lib/sys/inspect/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fsl",
"//src/lib/ui/base_view",
"//src/lib/vulkan",
"//src/ui/examples/escher/common",
"//src/ui/lib/escher:escher_with_glslang",
"//third_party/libpng",
"//third_party/shaderc:libshaderc",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fit",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/trace",
"//zircon/system/ulib/trace-provider:trace-provider-with-fdio",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}