blob: 37200bdebbf83d15e3b4f4d25f189da6fce12bdc [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("//third_party/fuchsia-sdk/build/component.gni")
import("//third_party/fuchsia-sdk/build/package.gni")
executable("bouncing_ball_bin") {
sources = [
"main.cc",
]
deps = [
"//third_party/fuchsia-sdk/fidl/fuchsia.ui.app",
"//third_party/fuchsia-sdk/pkg/async-loop-cpp",
"//third_party/fuchsia-sdk/pkg/async-loop-default",
"//third_party/fuchsia-sdk/pkg/scenic_cpp",
"//third_party/fuchsia-sdk/pkg/sys_cpp",
]
}
fuchsia_component("bouncing_ball_cmx") {
manifest = "meta/bouncing_ball.cmx"
data_deps = [
":bouncing_ball_bin",
]
}
fuchsia_package("bouncing_ball") {
deps = [
":bouncing_ball_cmx",
]
}