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

Unified Diff: third_party/libjingle/BUILD.gn

Issue 498393002: Windows fixes for GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « chrome/browser/ui/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
}
}
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698