blob: d9b567526e41f33871daeb44b7f49d5f41819240 [file] [log] [blame]
# Copyright 2017 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 = "spinning_square_view"
sources = [
"main.cc",
"spinning_square_view.cc",
"spinning_square_view.h",
]
deps = [
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/lib/fidl/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//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",
]
}
fuchsia_package_with_single_component("spinning_square_view") {
manifest = "meta/spinning_square_view.cmx"
deps = [ ":bin" ]
}