summaryrefslogtreecommitdiff
path: root/chromium/gpu/BUILD.gn
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 17:21:03 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-01-23 16:25:15 +0000
commitc551f43206405019121bd2b2c93714319a0a3300 (patch)
tree1f48c30631c421fd4bbb3c36da20183c8a2ed7d7 /chromium/gpu/BUILD.gn
parent7961cea6d1041e3e454dae6a1da660b453efd238 (diff)
downloadqtwebengine-chromium-c551f43206405019121bd2b2c93714319a0a3300.tar.gz
BASELINE: Update Chromium to 79.0.3945.139
Change-Id: I336b7182fab9bca80b709682489c07db112eaca5 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/gpu/BUILD.gn')
-rw-r--r--chromium/gpu/BUILD.gn27
1 files changed, 21 insertions, 6 deletions
diff --git a/chromium/gpu/BUILD.gn b/chromium/gpu/BUILD.gn
index 6d6ca00d25e..8bebff79ab1 100644
--- a/chromium/gpu/BUILD.gn
+++ b/chromium/gpu/BUILD.gn
@@ -11,27 +11,42 @@ import("//ui/gl/features.gni")
config("gpu_implementation") {
defines = [ "GPU_IMPLEMENTATION" ]
- configs = [ "//build/config/compiler:wexit_time_destructors" ]
+ configs = [
+ "//build/config/compiler:noshadowing",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
}
config("gpu_gles2_implementation") {
defines = [ "GPU_GLES2_IMPLEMENTATION" ]
- configs = [ "//build/config/compiler:wexit_time_destructors" ]
+ configs = [
+ "//build/config/compiler:noshadowing",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
}
config("gpu_util_implementation") {
defines = [ "GPU_UTIL_IMPLEMENTATION" ]
- configs = [ "//build/config/compiler:wexit_time_destructors" ]
+ configs = [
+ "//build/config/compiler:noshadowing",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
}
config("raster_implementation") {
defines = [ "RASTER_IMPLEMENTATION" ]
- configs = [ "//build/config/compiler:wexit_time_destructors" ]
+ configs = [
+ "//build/config/compiler:noshadowing",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
}
config("webgpu_implementation") {
defines = [ "WEBGPU_IMPLEMENTATION" ]
- configs = [ "//build/config/compiler:wexit_time_destructors" ]
+ configs = [
+ "//build/config/compiler:noshadowing",
+ "//build/config/compiler:wexit_time_destructors",
+ ]
}
component("gpu") {
@@ -525,7 +540,7 @@ test("gpu_unittests") {
"command_buffer/service/transform_feedback_manager_unittest.cc",
"command_buffer/service/vertex_array_manager_unittest.cc",
"command_buffer/service/vertex_attrib_manager_unittest.cc",
- "config/gpu_blacklist_unittest.cc",
+ "config/gpu_blocklist_unittest.cc",
"config/gpu_control_list_entry_unittest.cc",
"config/gpu_control_list_testing_arrays_and_structs_autogen.h",
"config/gpu_control_list_testing_autogen.cc",