Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: build/config/win/BUILD.gn

Issue 2270693008: clang/win: Make builds work with MSVC2015 update 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/win/BUILD.gn
diff --git a/build/config/win/BUILD.gn b/build/config/win/BUILD.gn
index a65997bf44c0f0bae8c794aee8bba499f30db3da..c778bf2ab4f9df95145610eaa9fdaf1c5b7bb4b6 100644
--- a/build/config/win/BUILD.gn
+++ b/build/config/win/BUILD.gn
@@ -402,7 +402,13 @@ config("target_winrt") {
# Config used by the MIDL template to disable warnings.
config("midl_warnings") {
if (is_clang) {
- # MIDL generates code like "#endif !_MIDL_USE_GUIDDEF_".
- cflags = [ "-Wno-extra-tokens" ]
+ cflags = [
+ # MIDL generates code like "#endif !_MIDL_USE_GUIDDEF_".
+ "-Wno-extra-tokens",
+
+ # TODO(thakis): Remove this once clang is rolled past r279116,
+ # https://crbug.com/637456
+ "-Wno-extern-initializer",
+ ]
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698