# C11/C++11 compiler flags setup.
# ---------------------------
- if (is_linux || is_tizen || is_chromeos || is_android || (is_nacl && is_clang) ||
- current_os == "aix") {
+ if (is_linux || is_tizen || is_chromeos || is_android ||
+ (is_nacl && is_clang) || current_os == "aix") {
if (target_os == "android") {
cxx11_override = use_cxx11_on_android
} else {
# TODO(https://crbug.com/1028110): Evaluate and possible enable.
"-Wno-deprecated-copy",
- # TODO(https://crbug.com/1203071): Clean up and enable.
- "-Wno-unused-but-set-parameter",
- "-Wno-unused-but-set-variable",
-
# TODO(https://crbug.com/1239077): Fix and re-enable.
"-Wno-inline-asm",
]
"-Wundefined-reinterpret-cast",
"-Wunneeded-internal-declaration",
"-Wweak-template-vtables",
- "-Wunused-but-set-variable",
# The below warnings are used by WebKit. We enable them to make rolling
# ANGLE in WebKit easier.