Remove unused entries from .gni file

These args were either previously used, but no longer are, or were never
implemented. Removing them since they are just cruft now.

Change-Id: Ie8d755868f8045b4836db608a3817837ddcb4f16
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/21200
Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
Ryan Harrison 2020-05-06 18:45:49 +00:00 committed by dan sinclair
parent ab56088ae7
commit 506fe795b6
1 changed files with 0 additions and 17 deletions

View File

@ -32,11 +32,6 @@ declare_args() {
tint_googletest_dir = "//third_party/googletest"
}
# Path to spirv-tools generated files, relative to |target_gen_dir|
if (!defined(tint_spirv_tools_gen)) {
tint_spirv_tools_gen = "third_party/spirv-tools"
}
# Path to spirv-headers checkout
if (!defined(tint_spirv_headers_dir)) {
tint_spirv_headers_dir = "//third_party/spirv-headers"
@ -61,16 +56,4 @@ declare_args() {
if (!defined(tint_build_wgsl_writer)) {
tint_build_wgsl_writer = false
}
# Enable memory sanitizer
# TODO(rharrison): Implement sanitizer support
tint_enable_msan = false
# Enable address sanitizer
# TODO(rharrison): Implement sanitizer support
tint_enable_msan = false
# Enable undefined behaviour sanitizer
# TODO(rharrison): Implement sanitizer support
tint_enable_ubsan = false
}