summaryrefslogtreecommitdiff
path: root/chromium/third_party/libdrm
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-16 09:59:13 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-20 10:28:53 +0000
commit6c11fb357ec39bf087b8b632e2b1e375aef1b38b (patch)
treec8315530db18a8ee566521c39ab8a6af4f72bc03 /chromium/third_party/libdrm
parent3ffaed019d0772e59d6cdb2d0d32fe4834c31f72 (diff)
downloadqtwebengine-chromium-6c11fb357ec39bf087b8b632e2b1e375aef1b38b.tar.gz
BASELINE: Update Chromium to 74.0.3729.159
Change-Id: I8d2497da544c275415aedd94dd25328d555de811 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/libdrm')
-rw-r--r--chromium/third_party/libdrm/BUILD.gn8
1 files changed, 7 insertions, 1 deletions
diff --git a/chromium/third_party/libdrm/BUILD.gn b/chromium/third_party/libdrm/BUILD.gn
index a3fed9d6949..3fc3cc3f6e6 100644
--- a/chromium/third_party/libdrm/BUILD.gn
+++ b/chromium/third_party/libdrm/BUILD.gn
@@ -19,8 +19,14 @@ config("libdrm_config") {
# Suppress this warning for now. This may be removed once
# https://patchwork.kernel.org/patch/9628231/ lands.
cflags = [ "-Wno-#pragma-messages" ]
+
if (is_clang) {
- cflags += [ "-Wno-enum-conversion" ]
+ cflags += [
+ "-Wno-enum-conversion",
+
+ # TODO(crbug.com/932060) fix unused result from asprintf in modetest.c.
+ "-Wno-unused-result",
+ ]
}
}