blob: e7010c0018ddb3d48a07c57e3d3907273b5cdb2f [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 = "scenic_dev_app"
sources = [
"app.cc",
"app.h",
"main.cc",
]
deps = [
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fsl",
"//src/lib/fxl",
"//src/lib/ui/scenic/cpp",
"//src/ui/lib/escher",
"//third_party/glm",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
include_dirs = [
"//src/ui/lib/escher",
"//lib",
]
configs += [ "//third_party/glm:enable_experimental" ]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}
fuchsia_package_with_single_component("scenic_dev_app") {
manifest = "meta/scenic_dev_app.cmx"
deps = [ ":bin" ]
}