dawn-cmake/tint_overrides_with_defaults.gni
Ryan Harrison 506fe795b6 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>
2020-05-06 18:45:49 +00:00

60 lines
1.6 KiB
Plaintext

# Copyright 2020 The Tint Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("//build_overrides/tint.gni")
# This file contains Tint-related build flags.
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"
}
# 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"
}
# Build the SPIR-V input reader
if (!defined(tint_build_spv_reader)) {
tint_build_spv_reader = false
}
# Build the SPIR-V output writer
if (!defined(tint_build_spv_writer)) {
tint_build_spv_writer = false
}
# Build the WGSL input reader
if (!defined(tint_build_wgsl_reader)) {
tint_build_wgsl_reader = false
}
# Build the WGSL output writer
if (!defined(tint_build_wgsl_writer)) {
tint_build_wgsl_writer = false
}
}