diff --git ui/accessibility/platform/BUILD.gn ui/accessibility/platform/BUILD.gn index cb282e3a526fb..e95bb8c96112b 100644 --- ui/accessibility/platform/BUILD.gn +++ ui/accessibility/platform/BUILD.gn @@ -283,6 +283,10 @@ component("platform") { if (use_gio) { configs += [ "//build/linux:gio_config" ] } + + if (is_clang) { + cflags = [ "-Wno-deprecated-volatile" ] + } } } } diff --git ui/gtk/BUILD.gn ui/gtk/BUILD.gn index 76ab8c9765bec..8bc3cdd0fec96 100644 --- ui/gtk/BUILD.gn +++ ui/gtk/BUILD.gn @@ -174,4 +174,8 @@ component("gtk") { # TODO: This should be removed. deps += [ "//ui/ozone" ] + + if (is_clang) { + cflags = [ "-Wno-deprecated-volatile" ] + } }