summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_host_win.gypi
diff options
context:
space:
mode:
authorHans Wennborg <hans@chromium.org>2015-10-06 14:19:38 -0700
committerHans Wennborg <hans@chromium.org>2015-10-06 21:23:29 +0000
commit8964dbc4cdb8498c09c61e69b63df3d7fe86785e (patch)
treedea773d454ccb9ffb240a5ef293ca542f7abfaf1 /remoting/remoting_host_win.gypi
parent90c4e9472b95803cf8220cd749a25523aa80b0b3 (diff)
downloadchromium_src-8964dbc4cdb8498c09c61e69b63df3d7fe86785e.zip
chromium_src-8964dbc4cdb8498c09c61e69b63df3d7fe86785e.tar.gz
chromium_src-8964dbc4cdb8498c09c61e69b63df3d7fe86785e.tar.bz2
Suppress -Wextern-initializer in chromoting_lib.dlldata.c
With the new SDK, Clang builds were failing with: error: 'extern' variable has an initializer [-Werror,-Wextern-initializer] PROXYFILE_LIST_START ^ C:\b\depot_tools\win_toolchain\vs2013_files\win_sdk/Include/10.0.10240.0/um\rpcproxy.h(823,39): note: expanded from macro 'PROXYFILE_LIST_START' extern const ProxyFileInfo* const aProxyFileList[] = { ^ BUG=491424, 82385 R=scottmg@chromium.org TBR=joedow, scottmg, thakis Review URL: https://codereview.chromium.org/1393473003 . Cr-Commit-Position: refs/heads/master@{#352687}
Diffstat (limited to 'remoting/remoting_host_win.gypi')
-rw-r--r--remoting/remoting_host_win.gypi2
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/remoting_host_win.gypi b/remoting/remoting_host_win.gypi
index 9c0b3e9..d4cdfd6 100644
--- a/remoting/remoting_host_win.gypi
+++ b/remoting/remoting_host_win.gypi
@@ -104,6 +104,8 @@
'-Wno-incompatible-pointer-types',
# Generated code contains unused variables.
'-Wno-unused-variable',
+ # PROXYFILE_LIST_START is an extern with initializer.
+ '-Wno-extern-initializer',
],
},
}, # end of target 'remoting_lib_ps'