Index: third_party/libjingle/BUILD.gn |
diff --git a/third_party/libjingle/BUILD.gn b/third_party/libjingle/BUILD.gn |
index cc83b297a24ef5bdff90aab3f2e7bf715869affa..777e08f96ad1543b2b78d6ebe33411905f90804a 100644 |
--- a/third_party/libjingle/BUILD.gn |
+++ b/third_party/libjingle/BUILD.gn |
@@ -255,8 +255,8 @@ static_library("libjingle") { |
] |
# From libjingle_common.gypi's conditions list. |
- if (is_win && !nacl_untrusted_build) { |
- cflags += [ "/wd4005", "\wd4267" ] |
+ if (is_win) { |
+ cflags = [ "/wd4005", "\wd4267" ] |
scottmg
2014/08/25 19:40:55
why the heck is this \wd?
brettw
2014/08/25 19:42:40
Variety, I guess. Fixed.
|
} |
forward_dependent_configs_from = [ |
@@ -337,7 +337,7 @@ source_set("peerconnnection_server") { |
] |
if (is_win) { |
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
- cflags += [ "/wd4309" ] |
+ cflags = [ "/wd4309" ] |
} |
} |