1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:47:35 +00:00

Meta: Add LibUnicode and LibLocale to gn build

A lot of code gen happening here. These generators are kind of
awkward to work with, and the fact that the CLDR data download
extracts over 8,000 files makes it hard to fit into the explicit
patterns GN expects of us.
This commit is contained in:
Andrew Kaster 2023-05-05 12:40:54 -06:00 committed by Andrew Kaster
parent b1e94a02fe
commit 1d3898f308
4 changed files with 363 additions and 0 deletions

View file

@ -0,0 +1,7 @@
declare_args() {
# If true, download CLDR and UCD files from unicode.org or the unicode
# consortium's github and use it in LibUnicode and LibLocale.
# Data will be downloaded to $cache_path/CLDR, $cache_path/UCD
# and $cache_path/EMOJI
enable_unicode_database_download = true
}