代码拉取完成,页面将自动刷新
同步操作将从 OpenHarmony-TPC/chromium_third_party_swiftshader 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# Copyright 2016 The SwiftShader Authors. All Rights Reserved.
#
# 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("src/Reactor/reactor.gni")
config("swiftshader_config") {
cflags = []
defines = []
asmflags = []
if (is_clang) {
cflags += [ "-Wno-shadow" ]
}
if (is_debug) {
if (swiftshader_startup_dialog) {
defines += [ "DEBUGGER_WAIT_DIALOG" ]
}
} else {
defines += [ "ANGLE_DISABLE_TRACE" ]
}
if (!is_win || is_clang) {
defines +=
[ "NO_SANITIZE_FUNCTION=__attribute__((no_sanitize(\"function\")))" ]
} else {
defines += [ "NO_SANITIZE_FUNCTION=" ]
}
if (is_win) {
# Disable MSVC warnings about std::aligned_storage being broken before
# VS 2017 15.8
defines += [ "_ENABLE_EXTENDED_ALIGNED_STORAGE" ]
# Diable some MSVC warnings.
if (!is_clang) {
cflags += [
"/wd4065", # switch statement contains 'default' but no 'case' labels
"/wd4309", # Truncation of constant value. See PixelRoutine.cpp casts
# of signed shorts.
]
}
cflags_cc = [ "/std:c++17" ]
} else {
cflags_cc = [ "-std=c++17" ]
cflags_objcc = [ "-std=c++17" ]
if (!is_debug) {
cflags += [ "-Os" ]
}
}
if (build_with_chromium) {
if (is_clang) {
if (current_cpu == "arm64") {
import("//build/config/arm.gni")
if (arm_control_flow_integrity == "standard") {
cflags += [ "-mbranch-protection=standard" ]
asmflags += [ "-mbranch-protection=standard" ]
} else if (arm_control_flow_integrity == "pac") {
cflags += [ "-mbranch-protection=pac-ret" ]
asmflags += [ "-mbranch-protection=pac-ret" ]
} else {
assert(arm_control_flow_integrity == "none",
"Invalid branch protection option!")
}
}
}
}
}
group("swiftshader") {
data_deps = [
"src/OpenGL/libEGL:swiftshader_libEGL",
"src/OpenGL/libGLESv2:swiftshader_libGLESv2",
]
}
if (build_with_chromium) {
group("swiftshader_tests") {
testonly = true
data_deps = [
"tests/GLESUnitTests:swiftshader_unittests",
"tests/SystemUnitTests:swiftshader_system_unittests",
]
if (supports_llvm) {
data_deps +=
[ "tests/ReactorUnitTests:swiftshader_reactor_llvm_unittests" ]
}
if (supports_subzero) {
data_deps +=
[ "tests/ReactorUnitTests:swiftshader_reactor_subzero_unittests" ]
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。