forked from google/dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternals.json
106 lines (106 loc) · 2.36 KB
/
externals.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
* This file is used by `./tools/run gen build` to map include paths to external projects.
* See docs/tint/gen.md for more information.
*/
{
"abseil": {
"IncludePatterns": [
"absl/**"
]
},
"dl": {
"IncludePatterns": [
"dlfcn.h"
],
"Condition": "tint_build_hlsl_writer"
},
"dxc-include": {
"IncludePatterns": [
"dxc/**"
],
"Condition": "tint_build_hlsl_writer"
},
"dxcompiler-for-fuzzer": {
"Condition": "tint_build_hlsl_writer"
},
"google-benchmark": {
"IncludePatterns": [
"benchmark/benchmark.h"
]
},
"jsoncpp": {
"IncludePatterns": [
"json/**"
],
"Condition": "tint_build_tintd"
},
"langsvr": {
"IncludePatterns": [
"langsvr/**"
],
"Condition": "tint_build_tintd"
},
"metal": {
"IncludePatterns": [
"Metal/Metal.h"
],
"Condition": "tint_build_is_mac"
},
"thread": {
"IncludePatterns": [
"thread"
]
},
"spirv-tools": {
"IncludePatterns": [
"spirv-tools/**"
],
"Condition": "tint_build_spv_reader || tint_build_spv_writer"
},
"spirv-headers": {
"IncludePatterns": [
"spirv/**"
],
"Condition": "tint_build_spv_reader || tint_build_spv_writer"
},
"spirv-opt-internal": {
"IncludePatterns": [
"source/opt/**"
],
"Condition": "tint_build_spv_reader || tint_build_spv_writer"
},
"glslang": {
"IncludePatterns": [
"glslang/Public/ShaderLang.h"
],
"Condition": "tint_build_glsl_validator"
},
"glslang-res-limits": {
"IncludePatterns": [
"glslang/Public/ResourceLimits.h"
],
"Condition": "tint_build_glsl_validator"
},
"gtest": {
"IncludePatterns": [
"gtest/**",
"gmock/**"
]
},
"winsock": {
"IncludePatterns": [
"winsock2.h"
],
"Condition": "tint_build_is_win"
},
"libprotobuf-mutator": {
"IncludePatterns": [
"libprotobuf-mutator/**"
]
},
"src_utils": {
"IncludePatterns": [
"src/utils/*",
]
}
}