cef/patch/patches/linux_glib_deprecated_volat...

29 lines
731 B
Diff
Raw Normal View History

diff --git ui/accessibility/platform/BUILD.gn ui/accessibility/platform/BUILD.gn
index 9f1549e173f41..b8af55c0fb763 100644
--- ui/accessibility/platform/BUILD.gn
+++ ui/accessibility/platform/BUILD.gn
@@ -278,6 +278,10 @@ component("platform") {
if (use_glib) {
configs += [ "//build/config/linux:glib" ]
}
+
+ if (is_clang) {
+ cflags = [ "-Wno-deprecated-volatile" ]
+ }
}
}
}
diff --git ui/gtk/BUILD.gn ui/gtk/BUILD.gn
index 4fc6b6d617832..77f17ecf4caf0 100644
--- ui/gtk/BUILD.gn
+++ ui/gtk/BUILD.gn
@@ -176,4 +176,8 @@ component("gtk") {
# TODO: This should be removed.
deps += [ "//ui/ozone" ]
+
+ if (is_clang) {
+ cflags = [ "-Wno-deprecated-volatile" ]
+ }
}