blob: 6b4293aa081a87a23ffacf85678eb75b0e586c24 [file] [log] [blame]
# Copyright 2015 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 = "tile_view"
sources = [
"main.cc",
"tile_params.cc",
"tile_params.h",
"tile_view.cc",
"tile_view.h",
]
deps = [
"//sdk/fidl/fuchsia.math",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/fidl/fuchsia.ui.policy",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/fidl/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/lib/storage/vfs/cpp",
"//src/lib/ui/base_view",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/trace-provider",
"//zircon/system/ulib/zx",
]
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}
fuchsia_package_with_single_component("tile_view") {
manifest = "meta/tile_view.cmx"
deps = [ ":bin" ]
}