mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
This reverts commit 7cd8db11558e427820d646219a69787b99e86431. Reason for revert: Breaking the Skia roll. Original change's description: > Add GN build option to build using generated files. > > This CL hooks the generated files into the GN build > behind a `tint_build_use_generator` flag. > > Change-Id: I4926b2c9c1a349f26be8a1f8a4508e1e31dab813 > Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108041 > Kokoro: Kokoro <noreply+kokoro@google.com> > Reviewed-by: Ben Clayton <bclayton@chromium.org> > Commit-Queue: Dan Sinclair <dsinclair@chromium.org> TBR=dsinclair@chromium.org,bclayton@google.com,bclayton@chromium.org,noreply+kokoro@google.com,dawn-scoped@luci-project-accounts.iam.gserviceaccount.com Change-Id: I3b920791bc2b6d22d9cbeb1310a2e89fbd1e8cd1 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108205 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com>
80 lines
2.1 KiB
Plaintext
80 lines
2.1 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/vulkan-deps/spirv-tools/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/vulkan-deps/spirv-headers/src"
|
|
}
|
|
|
|
# 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 unittests
|
|
if (!defined(tint_build_unittests)) {
|
|
tint_build_unittests = true
|
|
}
|
|
}
|