aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/icu
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2016-10-11 17:08:53 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-10-11 21:31:19 +0000
commit3eb71216d2fb70114417ae8ee9b0c5f5dc650704 (patch)
treeebbde45407506bf6787d0f21f89244dafdd24610 /third_party/icu
parenta2415accf1f184c4df6cffc2ccdd38f8d61031f6 (diff)
More steps toward GN/Windows.
I think I'm now at the point of needing to just resolve missing symbols. GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3201 Change-Id: Ib908bd72c23f2d4bafd17182eedcb2fc85c422e5 Reviewed-on: https://skia-review.googlesource.com/3201 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'third_party/icu')
-rw-r--r--third_party/icu/BUILD.gn4
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/icu/BUILD.gn b/third_party/icu/BUILD.gn
index e7a55b5218..9342c8f7dd 100644
--- a/third_party/icu/BUILD.gn
+++ b/third_party/icu/BUILD.gn
@@ -11,7 +11,9 @@ import("../third_party.gni")
third_party("icu") {
public_include_dirs = [ "../externals/icu/source/common" ]
configs -= [ "//gn:no_rtti" ]
- libs = [ "dl" ]
+ if (!is_win) {
+ libs = [ "dl" ]
+ }
defines = [
# http://userguide.icu-project.org/howtouseicu
"U_COMMON_IMPLEMENTATION",