diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 10:38:17 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 10:38:17 +0200 |
commit | 2eddf19168d5230877cff574ed548610e8eebc51 (patch) | |
tree | 439c3b6047965cfc9d3358a4ef23ff61e91d4c0a /gfx/thebes/moz.build | |
parent | cd1ab47cfd41fabae4fa41ae6bfd040caf8d806f (diff) | |
download | uxp-2eddf19168d5230877cff574ed548610e8eebc51.tar.gz |
Issue #325 Part 3: Remove support for using legacy Gecko normalization in gfxHarfBuzzShaper.
Diffstat (limited to 'gfx/thebes/moz.build')
-rw-r--r-- | gfx/thebes/moz.build | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gfx/thebes/moz.build b/gfx/thebes/moz.build index 227b2b875b..e253d7891e 100644 --- a/gfx/thebes/moz.build +++ b/gfx/thebes/moz.build @@ -223,12 +223,10 @@ elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': 'DeviceManagerDx.cpp', ] -# We prefer to use ICU for normalization functions, but currently it is only -# available if we're building with the Intl API enabled: -if CONFIG['ENABLE_INTL_API']: - USE_LIBS += [ - 'icu', - ] +# We use ICU for normalization functions +USE_LIBS += [ + 'icu', +] include('/ipc/chromium/chromium-config.mozbuild') |