blob: 9dbb55bb5ec765a25d1f86d9da23bc63362704f4 [file] [log] [blame]
# Copyright 2019 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 = "bouncing_ball"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.ui.app",
"//sdk/lib/sys/cpp",
"//sdk/lib/ui/scenic/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}
fuchsia_package_with_single_component("bouncing_ball") {
manifest = "meta/bouncing_ball.cmx"
deps = [ ":bin" ]
}
fuchsia_component("component_v2_for_test") {
component_name = "bouncing_ball"
manifest = "meta/bouncing_ball.cml"
deps = [ ":bin" ]
}