Commit 7998f87d authored by Amy Huang's avatar Amy Huang Committed by Commit Bot

Disable new clang warning -Wno-enum-enum-conversion in blink build

Change-Id: Ia1f87b0479a92d9f57d4261379044baa13f574b6
Bug: 1035171
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1974530Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Commit-Queue: Amy Huang <akhuang@google.com>
Cr-Commit-Position: refs/heads/master@{#726116}
parent ca7a86f7
...@@ -1545,8 +1545,6 @@ config("default_warnings") { ...@@ -1545,8 +1545,6 @@ config("default_warnings") {
cflags += [ cflags += [
# TODO(https://crbug.com/1031169): Clean up and enable. # TODO(https://crbug.com/1031169): Clean up and enable.
"-Wno-misleading-indentation", "-Wno-misleading-indentation",
# TODO(https://crbug.com/1035171): Clean up and enable.
"-Wno-enum-enum-conversion",
] ]
} }
} }
......
...@@ -48,6 +48,12 @@ config("inside_blink") { ...@@ -48,6 +48,12 @@ config("inside_blink") {
"-Wno-implicit-float-conversion", "-Wno-implicit-float-conversion",
"-Wno-implicit-int-conversion", "-Wno-implicit-int-conversion",
] ]
if (llvm_force_head_revision) {
cflags += [
"-Wno-enum-enum-conversion",
]
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment