blob: 3e96c431e710583ba16e07e0beeac59885654938 [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/public/lib/fostr/fidl/fuchsia.ui.input",
"//sdk/fidl/fuchsia.math",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/fidl/fuchsia.ui.input",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/ui/scenic/cpp",
"//src/lib/fsl",
"//src/lib/ui/base_view",
"//src/ui/examples/shadertoy/service",
"//src/ui/examples/shadertoy/service/services",
"//src/ui/lib/glm_workaround",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
"//zircon/public/lib/trace-provider-with-fdio",
]
include_dirs = [ "//lib" ]
}