| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # Builds shaderc for the Vulkan backend | 6 # Builds shaderc for the Vulkan backend |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'shaderc_combined', | 10 'target_name': 'shaderc_combined', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 'libshaderc', | 13 'libshaderc', |
| 14 'libshaderc_util', | 14 'libshaderc_util', |
| 15 'liboglcompiler', | 15 'liboglcompiler', |
| 16 'libspirv', | 16 'libspirv', |
| 17 'libglslangosdependent', | 17 'libglslangosdependent', |
| 18 'libglslang', | 18 'libglslang', |
| 19 ], | 19 ], |
| 20 'direct_dependent_settings': { | 20 'all_dependent_settings': { |
| 21 'include_dirs': [ | 21 'include_dirs': [ |
| 22 '../third_party/externals/shaderc2/libshaderc/include', | 22 '../third_party/externals/shaderc2/libshaderc/include', |
| 23 ], | 23 ], |
| 24 }, | 24 }, |
| 25 }, | 25 }, |
| 26 { | 26 { |
| 27 'target_name': 'libshaderc', | 27 'target_name': 'libshaderc', |
| 28 'type': 'static_library', | 28 'type': 'static_library', |
| 29 'cflags': [ | 29 'cflags': [ |
| 30 '-w', | 30 '-w', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 '--extinst-opencl-grammar', | 334 '--extinst-opencl-grammar', |
| 335 '../third_party/externals/shaderc2/third_party/spirv-tools/source/ex
tinst-1-0.opencl.std.grammar.json', | 335 '../third_party/externals/shaderc2/third_party/spirv-tools/source/ex
tinst-1-0.opencl.std.grammar.json', |
| 336 '--opencl-insts-output', | 336 '--opencl-insts-output', |
| 337 '../third_party/externals/shaderc2/third_party/spirv-tools/source/op
encl.std.insts-1-0.inc' | 337 '../third_party/externals/shaderc2/third_party/spirv-tools/source/op
encl.std.insts-1-0.inc' |
| 338 ], | 338 ], |
| 339 }, | 339 }, |
| 340 ], | 340 ], |
| 341 }, | 341 }, |
| 342 ], | 342 ], |
| 343 } | 343 } |
| OLD | NEW |