mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-13 10:51:35 +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>
44 lines
1.6 KiB
Plaintext
44 lines
1.6 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.
|
|
|
|
declare_args() {
|
|
# Tell Dawn and dependencies to not do Chromium-specific things
|
|
build_with_chromium = false
|
|
|
|
# In standalone Dawn builds, don't try to use the hermetic install of Xcode
|
|
# that Chromium uses
|
|
use_system_xcode = ""
|
|
|
|
# Android 32-bit non-component, non-clang builds cannot have symbol_level=2
|
|
# due to 4GiB file size limit, see https://crbug.com/648948.
|
|
ignore_elf32_limitations = false
|
|
}
|
|
|
|
# Detect whether we can use the hermetic XCode like in Chromium and do so if
|
|
# possible.
|
|
if (host_os == "mac" && use_system_xcode == "") {
|
|
_result = exec_script("//build/mac/should_use_hermetic_xcode.py",
|
|
[ target_os ],
|
|
"value")
|
|
|
|
assert(_result != 2,
|
|
"Do not allow building targets with the default" +
|
|
"hermetic toolchain if the minimum OS version is not met.")
|
|
assert(_result != 3,
|
|
"iOS does not support building with a hermetic toolchain. " +
|
|
"Please install Xcode.")
|
|
|
|
use_system_xcode = _result != 1
|
|
}
|