Merge pull request #3135 from harfbuzz/post-parse

[util] Clean up option parsing some more and implement missing featuress
This commit is contained in:
Behdad Esfahbod 2021-08-11 23:05:11 -06:00 committed by GitHub
commit 302bde0bfb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1003 changed files with 979 additions and 679 deletions

View File

@ -425,11 +425,11 @@ util/Makefile
test/Makefile test/Makefile
test/api/Makefile test/api/Makefile
test/fuzzing/Makefile test/fuzzing/Makefile
test/shaping/Makefile test/shape/Makefile
test/shaping/data/Makefile test/shape/data/Makefile
test/shaping/data/aots/Makefile test/shape/data/aots/Makefile
test/shaping/data/in-house/Makefile test/shape/data/in-house/Makefile
test/shaping/data/text-rendering-tests/Makefile test/shape/data/text-rendering-tests/Makefile
test/subset/Makefile test/subset/Makefile
test/subset/data/Makefile test/subset/data/Makefile
test/subset/data/repack_tests/Makefile test/subset/data/repack_tests/Makefile

View File

@ -2,7 +2,7 @@
NULL = NULL =
EXTRA_DIST = EXTRA_DIST =
SUBDIRS = api shaping fuzzing subset SUBDIRS = api shape subset fuzzing
EXTRA_DIST += \ EXTRA_DIST += \
meson.build \ meson.build \

View File

@ -1,4 +1,4 @@
subdir('api') subdir('api')
subdir('fuzzing') subdir('shape')
subdir('shaping')
subdir('subset') subdir('subset')
subdir('fuzzing')

Some files were not shown because too many files have changed in this diff Show More