From 8bb40837da773570ac80037405b8499e9f43e01d Mon Sep 17 00:00:00 2001 From: Hal Canary Date: Thu, 8 Feb 2018 15:16:28 -0500 Subject: Build ICU on iOS Change-Id: Idc6d5ed987540bc41d64ceab87af103591dc1911 Reviewed-on: https://skia-review.googlesource.com/105800 Reviewed-by: Ben Wagner Commit-Queue: Hal Canary --- third_party/icu/BUILD.gn | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'third_party/icu') diff --git a/third_party/icu/BUILD.gn b/third_party/icu/BUILD.gn index 6b2482f2fb..7233fcc4c9 100644 --- a/third_party/icu/BUILD.gn +++ b/third_party/icu/BUILD.gn @@ -221,7 +221,11 @@ if (skia_use_system_icu) { libs = [ "Advapi32.lib" ] sources += [ "../externals/icu/source/stubdata/stubdata.c" ] } else { - sources += [ "../externals/icu/$current_os/icudtl_dat.S" ] + if (is_ios) { + sources += [ "../externals/icu/mac/icudtl_dat.S" ] + } else { + sources += [ "../externals/icu/$current_os/icudtl_dat.S" ] + } libs = [ "dl" ] } } -- cgit v1.2.3