blob: 2440c80913557f9301db51989063ed68819008b2 [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 = "simplest_app"
sources = [
"main.cc",
"view.cc",
"view.h",
]
deps = [
"//garnet/public/lib/fostr/fidl/fuchsia.ui.input",
"//sdk/fidl/fuchsia.ui.input",
"//sdk/fidl/fuchsia.ui.policy",
"//sdk/fidl/fuchsia.ui.scenic",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/ui/scenic/cpp",
"//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",
"//zircon/system/ulib/trace-provider:trace-provider-with-fdio",
]
}
fuchsia_package_with_single_component("simplest_app") {
manifest = "meta/simplest_app.cmx"
deps = [ ":bin" ]
}