blob: 1d38387cd465a75c7472e6cd8d8c3cb9e368f8bb [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.
if (is_host) {
executable("paper_shader_compiler") {
sources = [ "main.cc" ]
deps = [
# Shader precompiler should always be built with glslang.
"//sdk/lib/syslog/cpp",
"//src/ui/lib/escher:escher_with_glslang",
"//src/ui/lib/escher/shaders/util:shader_utils",
"//third_party/glm",
"//third_party/shaderc/src:libshaderc",
]
include_dirs = [
"//lib",
"//src/ui/lib/escher",
]
}
}