aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/icu/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/icu/BUILD.gn')
-rw-r--r--third_party/icu/BUILD.gn6
1 files changed, 5 insertions, 1 deletions
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" ]
}
}