blob: a9ddf8cdd43c3be58650ed76d6654078e43320f0 [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("//src/ui/lib/escher/build_args.gni")
executable("scenic_dev_app") {
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",
"//src/ui/lib/glm_workaround",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
]
include_dirs = [
"//src/ui/lib/escher",
"//lib",
]
defines = [ "GLM_ENABLE_EXPERIMENTAL" ]
}