blob: e51e47f095b956b9987d37fd86a74de338e7239e [file] [log] [blame]
# Copyright 2018 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 = "image_grid_cpp"
sources = [
"image_grid_view.cc",
"image_grid_view.h",
"main.cc",
]
deps = [
"//sdk/fidl/fuchsia.ui.scenic:fuchsia.ui.scenic_hlcpp",
"//sdk/lib/fidl/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/lib/ui/base_view",
"//src/ui/scenic/lib/scenic/util:rk4_spring_simulation",
"//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("image_grid_cpp") {
manifest = "meta/image_grid_cpp.cml"
deps = [ ":bin" ]
}