Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: gyp/shaderc.gyp

Issue 2129953002: Correctly handle mat2x2 in Vulkan (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: nits Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/gpu/vk/GrVkPipelineStateDataManager.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/gpu/vk/GrVkPipelineStateDataManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698