Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-06-12 18:25:53 +0300
committerAnna Henningsen <anna@addaleax.net>2017-08-02 12:52:23 +0300
commit9a3fc10dd4eab551fc0c5176698b5ddd591a4ae3 (patch)
treea359e3cb26c75594683118edb076cff5650cf768 /tools
parentf593960d353ab1e6ff30a0d22ade15b2b5c9b027 (diff)
util: implement WHATWG Encoding Standard API
Provide an (initially experimental) implementation of the WHATWG Encoding Standard API (`TextDecoder` and `TextEncoder`). The is the same API implemented on the browser side. By default, with small-icu, only the UTF-8, UTF-16le and UTF-16be decoders are supported. With full-icu enabled, every encoding other than iso-8859-16 is supported. This provides a basic test, but does not include the full web platform tests. Note: many of the web platform tests for this would fail by default because we ship with small-icu by default. A process warning will be emitted on first use to indicate that the API is still experimental. No runtime flag is required to use the feature. Backport-PR-URL: https://github.com/nodejs/node/pull/14585 Backport-Reviewed-By: Anna Henningsen <anna@addaleax.net> Refs: https://encoding.spec.whatwg.org/ PR-URL: https://github.com/nodejs/node/pull/13644 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/icu/icu-generic.gyp9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/icu/icu-generic.gyp b/tools/icu/icu-generic.gyp
index 4c2125a0435..93d7cd5f6d9 100644
--- a/tools/icu/icu-generic.gyp
+++ b/tools/icu/icu-generic.gyp
@@ -30,15 +30,6 @@
'type': 'none',
'toolsets': [ 'host', 'target' ],
'direct_dependent_settings': {
- 'conditions': [
- [ 'icu_endianness == "l"', {
- 'defines': [
- # ICU cannot swap the initial data without this.
- # http://bugs.icu-project.org/trac/ticket/11046
- 'UCONFIG_NO_LEGACY_CONVERSION=1'
- ],
- }],
- ],
'defines': [
'UCONFIG_NO_SERVICE=1',
'UCONFIG_NO_REGULAR_EXPRESSIONS=1',