Fix CC flags in GN Windows build.

It was applying a GCC command line flag on Windows

R=brettw@chromium.org

Review URL: https://webrtc-codereview.appspot.com/46989004

Cr-Commit-Position: refs/heads/master@{#9049}
This commit is contained in:
Henrik Kjellander 2015-04-22 08:49:52 +02:00
parent fb49451014
commit e555b7b440

View File

@ -21,9 +21,11 @@ config("rtc_base_config") {
"LOGGING=1",
]
# TODO(henrike): issue 3307, make rtc_base build without disabling
# these flags.
cflags_cc = [ "-Wno-non-virtual-dtor" ]
if (is_posix) {
# TODO(henrike): issue 3307, make rtc_base build without disabling
# these flags.
cflags_cc = [ "-Wno-non-virtual-dtor" ]
}
}
config("rtc_base_chromium_config") {