blob: 80f62fc10ee833af9f86c944f961bdd6661475cb [file] [log] [blame]
# Copyright 2010 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("paper_shader_compiler") {
output_name = "paper_shader_compiler"
sources = [ "main.cc" ]
deps = [
# Shader precompiler should always be built with glslang.
"//src/ui/lib/escher:escher_with_glslang",
"//src/ui/lib/escher/shaders/util:shader_utils",
"//third_party/shaderc:libshaderc",
]
if (is_linux) {
deps += [ "//src/ui/lib/escher/shaders:linux_shader_data" ]
}
include_dirs = [
"//lib",
"//src/ui/lib/escher",
"//third_party/glm",
]
}