Roll third_party/externals/angle2 a54104803d72..52d861bd49cc (8 commits)
a54104803d..52d861bd49
git log a54104803d72..52d861bd49cc --date=short --no-merges --format='%ad %ae %s'
2019-02-02 syoussefi@chromium.org Disable -Wextra-semi-stmt
2019-02-02 ianelliott@google.com Implement EGL_ANDROID_recordable for Vulkan back-end.
2019-02-01 jonahr@google.com Fix unnecessary copy of for loop variables in ANGLE
2019-02-01 syoussefi@chromium.org Use env variable to select default backend
2019-02-01 jmadill@chromium.org Enable -Wextra-semi and -Wextra-semi-stmt.
2019-02-01 syoussefi@chromium.org Initial support for compiler AST validation
2019-02-01 jmadill@chromium.org Roll glslang.
2019-02-01 ckulakowski@opera.com Fix for linking of non-component angle_unittests
Created with:
gclient setdep -r third_party/externals/angle2@52d861bd49cc
The AutoRoll server is located here: https://autoroll.skia.org/r/angle-skia-autoroll
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
If the roll is causing failures, please contact the current sheriff, who should
be CC'd on the roll, and stop the roller if necessary.
CQ_INCLUDE_TRYBOTS=skia.primary:Build-Debian9-Clang-x86_64-Release-ANGLE;skia.primary:Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE;skia.primary:Perf-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Debug-All-ANGLE;skia.primary:Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE;skia.primary:Perf-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE;skia.primary:Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE;skia.primary:Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE;skia.primary:Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE;skia.primary:Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Debug-All-ANGLE;skia.primary:Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE
TBR=borenet@google.com
Change-Id: I008df064f6301658404c371cf47a5656d8c11621
Reviewed-on: https://skia-review.googlesource.com/c/188852
Reviewed-by: Eric Boren <borenet@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Reviewed-by: skia-autoroll <skia-autoroll@skia-public.iam.gserviceaccount.com>
Commit-Queue: Mike Klein <mtklein@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
This commit is contained in:
parent
e0c94a27a3
commit
56bf8ce97b
2
DEPS
2
DEPS
@ -7,7 +7,7 @@ vars = {
|
||||
deps = {
|
||||
"buildtools" : "https://chromium.googlesource.com/chromium/buildtools.git@505de88083136eefd056e5ee4ca0f01fe9b33de8",
|
||||
"common" : "https://skia.googlesource.com/common.git@9737551d7a52c3db3262db5856e6bcd62c462b92",
|
||||
"third_party/externals/angle2" : "https://chromium.googlesource.com/angle/angle.git@a54104803d7211d40720ddca28407137e5b70767",
|
||||
"third_party/externals/angle2" : "https://chromium.googlesource.com/angle/angle.git@52d861bd49cc29fa19ae03c248cad122d77f4703",
|
||||
"third_party/externals/dng_sdk" : "https://android.googlesource.com/platform/external/dng_sdk.git@96443b262250c390b0caefbf3eed8463ba35ecae",
|
||||
"third_party/externals/egl-registry" : "https://skia.googlesource.com/external/github.com/KhronosGroup/EGL-Registry@a0bca08de07c7d7651047bedc0b653cfaaa4f2ae",
|
||||
"third_party/externals/expat" : "https://android.googlesource.com/platform/external/expat.git@android-6.0.1_r55",
|
||||
|
@ -322,6 +322,9 @@ config("warnings") {
|
||||
"-Wno-unknown-warning-option", # Let older Clangs ignore newer Clangs' warnings.
|
||||
]
|
||||
|
||||
if (is_win) {
|
||||
cflags += [ "-Wno-extra-semi-stmt" ]
|
||||
}
|
||||
if (target_cpu == "arm" && is_ios) {
|
||||
# Clang seems to think new/malloc will only be 4-byte aligned on 32-bit iOS.
|
||||
# We're pretty sure it's actually 8-byte alignment.
|
||||
@ -428,10 +431,7 @@ config("debug_symbols") {
|
||||
} else if (is_win) {
|
||||
cflags = [ "/Z7" ]
|
||||
if (is_clang) {
|
||||
cflags += [
|
||||
"-mllvm",
|
||||
"-emit-codeview-ghash-section",
|
||||
]
|
||||
cflags += [ "-gcodeview-ghash" ]
|
||||
ldflags = [ "/DEBUG:GHASH" ]
|
||||
} else {
|
||||
ldflags = [ "/DEBUG:FASTLINK" ]
|
||||
|
@ -1 +1 @@
|
||||
8
|
||||
9
|
@ -18,7 +18,7 @@ import utils
|
||||
|
||||
# Copied from CLANG_REVISION here:
|
||||
# https://cs.chromium.org/chromium/src/tools/clang/scripts/update.py
|
||||
CLANG_REVISION = '346388'
|
||||
CLANG_REVISION = '352921'
|
||||
CLANG_SUB_REVISION = '1'
|
||||
CLANG_PKG_VERSION = '%s-%s' % (CLANG_REVISION, CLANG_SUB_REVISION)
|
||||
GS_URL = ('https://commondatastorage.googleapis.com/chromium-browser-clang'
|
||||
|
@ -15652,7 +15652,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -15788,7 +15788,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -15924,7 +15924,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16060,7 +16060,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16196,7 +16196,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16332,7 +16332,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
},
|
||||
{
|
||||
"name": "skia/bots/opencl_headers",
|
||||
@ -16473,7 +16473,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16609,7 +16609,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16745,7 +16745,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -16881,7 +16881,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -17017,7 +17017,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
@ -17153,7 +17153,7 @@
|
||||
{
|
||||
"name": "skia/bots/clang_win",
|
||||
"path": "clang_win",
|
||||
"version": "version:8"
|
||||
"version": "version:9"
|
||||
}
|
||||
],
|
||||
"command": [
|
||||
|
2
third_party/angle2/BUILD.gn
vendored
2
third_party/angle2/BUILD.gn
vendored
@ -90,7 +90,7 @@ shared_library("libGLESv2") {
|
||||
angle_translator_hlsl_sources + libangle_sources +
|
||||
libangle_common_sources + libangle_image_util_sources +
|
||||
libglesv2_sources + libangle_gl_sources +
|
||||
angle_system_utils_sources,
|
||||
angle_system_utils_sources + xxhash_sources,
|
||||
".",
|
||||
angle_root)
|
||||
if (is_win) {
|
||||
|
Loading…
Reference in New Issue
Block a user