From b6318bf44dd89dc8465dcf48ba820701eae24acb Mon Sep 17 00:00:00 2001 From: herb Date: Fri, 16 Sep 2016 13:29:57 -0700 Subject: Compile the skia library for windows using gn. TBR=mtklein@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2347443002 Review-Url: https://codereview.chromium.org/2347443002 --- third_party/third_party.gni | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'third_party/third_party.gni') diff --git a/third_party/third_party.gni b/third_party/third_party.gni index 34751c0286..37b1e03687 100644 --- a/third_party/third_party.gni +++ b/third_party/third_party.gni @@ -12,7 +12,11 @@ template("third_party") { public_configs = [ ":" + target_name + "_public" ] # Warnings are just noise if we're not maintaining the code. - cflags = [ "-w" ] + if (is_win) { + cflags = [ "/w" ] + } else { + cflags = [ "-w" ] + } } } -- cgit v1.2.3