blob: 0725fc702a2bc9ade5f0b842dfaddb1365ec5feb [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",
"//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.cmx"
deps = [ ":bin" ]
}