blob: ce7e3fc8d925e48b97889bbd859c372537051491 [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.
executable("client") {
output_name = "shadertoy_client"
sources = [
"glsl_strings.cc",
"glsl_strings.h",
"main.cc",
"view.cc",
"view.h",
]
deps = [
"//garnet/examples/ui/shadertoy/service",
"//garnet/examples/ui/shadertoy/service/services",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/ui/base_view/cpp",
"//garnet/public/lib/ui/input/cpp",
"//garnet/public/lib/ui/scenic/cpp",
"//sdk/fidl/fuchsia.math",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/fidl/fuchsia.ui.input",
"//sdk/lib/fidl/cpp",
"//src/ui/lib/glm_workaround",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/trace-provider",
]
include_dirs = [ "//lib" ]
}