mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 17:16:01 +00:00
This reverts commit 020d69905e03b2f1d6f658775bd0993609eca1de. Reason for revert: Causing Dawn Skia roll build fails https://task-scheduler.skia.org/job/AZXXBm9h9ozj3kKiRJM5 Original change's description: > Added Abseil as a third-party dependency > > Using the version in the Chromium repo in order to make use of the .gn > files it contains. > > Doing so also appears to require us to switch where we pull googletest > from so that the directory structure matches what the Abseil build > config expects. Fortunately this doesn't seem to cause issues in our > tests. > > Bug: dawn:563 > Change-Id: I55831ad33f282b3d8b03b67826fd2776e5602d89 > Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/63780 > Reviewed-by: Austin Eng <enga@chromium.org> > Reviewed-by: Corentin Wallez <cwallez@chromium.org> > Commit-Queue: Corentin Wallez <cwallez@chromium.org> > Auto-Submit: Brandon Jones <bajones@chromium.org> # Not skipping CQ checks because original CL landed > 1 day ago. Bug: dawn:563 Change-Id: I0fc4e5fc73ab9b0887591135ec01adde990edd6f Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/64361 Reviewed-by: Austin Eng <enga@chromium.org> Commit-Queue: Shrek Shao <shrekshao@google.com>
42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
# Copyright 2018 The Dawn 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.
|
|
|
|
# These are variables that are overridable by projects that include Dawn.
|
|
# The values in this file are the defaults for when we are building from
|
|
# Dawn's repository.
|
|
|
|
# Whether we are building from Dawn's repository.
|
|
# MUST be unset in other projects (will default to false).
|
|
dawn_standalone = true
|
|
|
|
# True if Dawn can access build/, testing/ and other Chrome folders.
|
|
dawn_has_build = true
|
|
|
|
# Defaults for these are set again in dawn_overrides_with_defaults.gni so that
|
|
# users of Dawn don't have to set dirs if they happen to use the same as Dawn.
|
|
|
|
# The paths to Dawn's dependencies
|
|
dawn_angle_dir = "//third_party/angle"
|
|
dawn_jinja2_dir = "//third_party/jinja2"
|
|
dawn_glfw_dir = "//third_party/glfw"
|
|
dawn_glm_dir = "//third_party/glm"
|
|
dawn_googletest_dir = "//third_party/googletest"
|
|
dawn_spirv_tools_dir = "//third_party/vulkan-deps/spirv-tools/src"
|
|
dawn_spirv_cross_dir = "//third_party/vulkan-deps/spirv-cross/src"
|
|
dawn_swiftshader_dir = "//third_party/swiftshader"
|
|
dawn_tint_dir = "//third_party/tint"
|
|
dawn_vulkan_loader_dir = "//third_party/vulkan-deps/vulkan-loader/src"
|
|
dawn_vulkan_validation_layers_dir =
|
|
"//third_party/vulkan-deps/vulkan-validation-layers/src"
|