1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From 065c936e74d629b51f5258fb3b58899bd5857b53 Mon Sep 17 00:00:00 2001
From: Elvis Pranskevichus <elvis@magic.io>
Date: Sun, 29 Oct 2017 16:38:40 -0400
Subject: [PATCH] system-icu support
---
electron.gyp | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/electron.gyp b/electron.gyp
index 43f3ffb51..2c398fe75 100644
--- a/electron.gyp
+++ b/electron.gyp
@@ -200,7 +200,6 @@
'files': [
'<@(copied_libraries)',
'<(libchromiumcontent_dir)/locales',
- '<(libchromiumcontent_dir)/icudtl.dat',
'<(libchromiumcontent_dir)/blink_image_resources_200_percent.pak',
'<(libchromiumcontent_dir)/content_resources_200_percent.pak',
'<(libchromiumcontent_dir)/content_shell.pak',
@@ -249,6 +248,9 @@
'.',
'vendor/brightray',
'vendor/native_mate',
+ # libicu headers shim.
+ '<(SHARED_INTERMEDIATE_DIR)/shim_headers/icui18n_shim',
+ '<(SHARED_INTERMEDIATE_DIR)/shim_headers/icuuc_shim',
# Include atom_natives.h.
'<(SHARED_INTERMEDIATE_DIR)',
# Include directories for uv and node.
--
2.14.3
|