-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtint_overrides_with_defaults.gni
164 lines (136 loc) · 4.48 KB
/
tint_overrides_with_defaults.gni
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Copyright 2020 The Dawn & Tint Authors
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import("//build_overrides/tint.gni")
# This file contains Tint-related build flags.
if (!defined(tint_standalone)) {
if (defined(dawn_standalone)) {
tint_standalone = dawn_standalone
} else {
tint_standalone = false
}
}
if (!defined(tint_has_build)) {
tint_has_build = true
}
tint_has_fuzzers = tint_has_build
declare_args() {
# Is protobuf support present
if (!defined(tint_has_protobuf)) {
tint_has_protobuf = tint_standalone || build_with_chromium
}
}
declare_args() {
# Path to tint checkout
if (!defined(tint_root_dir)) {
tint_root_dir = "//"
}
# Path to spirv-tools checkout
if (!defined(tint_spirv_tools_dir)) {
tint_spirv_tools_dir = "//third_party/spirv-tools/src"
}
# Path to glslang checkout
if (!defined(tint_glslang_dir)) {
tint_glslang_dir = "//third_party/glslang/src"
}
# Path to googletest checkout
if (!defined(tint_googletest_dir)) {
tint_googletest_dir = "//third_party/googletest"
}
# Path to spirv-headers checkout
if (!defined(tint_spirv_headers_dir)) {
tint_spirv_headers_dir = "//third_party/spirv-headers/src"
}
# Path to libprotobuf-mutator checkout
if (!defined(tint_lpm_dir)) {
tint_lpm_dir = "//third_party/libprotobuf-mutator"
}
if (!defined(tint_build_cmds)) {
tint_build_cmds = tint_standalone
}
# Build the SPIR-V input reader
if (!defined(tint_build_spv_reader)) {
tint_build_spv_reader = true
}
# Build the SPIR-V output writer
if (!defined(tint_build_spv_writer)) {
tint_build_spv_writer = true
}
# Build the WGSL input reader
if (!defined(tint_build_wgsl_reader)) {
tint_build_wgsl_reader = true
}
# Build the WGSL output writer
if (!defined(tint_build_wgsl_writer)) {
tint_build_wgsl_writer = true
}
# Build the MSL output writer
if (!defined(tint_build_msl_writer)) {
tint_build_msl_writer = true
}
# Build the HLSL output writer
if (!defined(tint_build_hlsl_writer)) {
tint_build_hlsl_writer = true
}
# Build the GLSL output writer
if (!defined(tint_build_glsl_writer)) {
tint_build_glsl_writer = true
}
# Build the GLSL output validator
if (!defined(tint_build_glsl_validator)) {
tint_build_glsl_validator = true
}
# Build the Syntax Tree writer
if (!defined(tint_build_syntax_tree_writer)) {
tint_build_syntax_tree_writer = false
}
# Build IR binary format support
if (!defined(tint_build_ir_binary)) {
tint_build_ir_binary = tint_has_protobuf
}
# Build IR binary fuzzer
if (!defined(tint_build_ir_fuzzer)) {
tint_build_ir_fuzzer = false
}
# Build the tintd language server
if (!defined(tint_build_tintd)) {
tint_build_tintd = false
}
# Build unittests
if (!defined(tint_build_unittests)) {
tint_build_unittests = true
}
# Build benchmarks
if (!defined(tint_build_benchmarks)) {
tint_build_benchmarks = true
}
}
declare_args() {
# Directory holding tint source
if (!defined(tint_src_dir)) {
tint_src_dir = "${tint_root_dir}/src/tint"
}
}