blob: 3d83a779cf54e9ed89ec9ee291a1fd305aa74dd7 [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.
executable("bouncing_ball") {
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" ]
}