register path overrides with libc_bio, install fonts.xml
18
meson.build
|
@ -17,6 +17,9 @@ libart_dep = [
|
||||||
libdl_bio_dep = [
|
libdl_bio_dep = [
|
||||||
cc.find_library('dl_bio')
|
cc.find_library('dl_bio')
|
||||||
]
|
]
|
||||||
|
libc_bio_dep = [
|
||||||
|
cc.find_library('c_bio')
|
||||||
|
]
|
||||||
libandroidfw_dep = [
|
libandroidfw_dep = [
|
||||||
cc.find_library('androidfw', dirs : [ '/usr' / get_option('libdir') / 'art', '/usr/local' / get_option('libdir') / 'art', get_option('prefix') / get_option('libdir') / 'art' ]),
|
cc.find_library('androidfw', dirs : [ '/usr' / get_option('libdir') / 'art', '/usr/local' / get_option('libdir') / 'art', get_option('prefix') / get_option('libdir') / 'art' ]),
|
||||||
]
|
]
|
||||||
|
@ -183,16 +186,21 @@ executable('android-translation-layer', [
|
||||||
'src/main-executable/main.c',
|
'src/main-executable/main.c',
|
||||||
'src/main-executable/back_button.c',
|
'src/main-executable/back_button.c',
|
||||||
'src/main-executable/bionic_compat.c',
|
'src/main-executable/bionic_compat.c',
|
||||||
|
'src/main-executable/libc_bio_path_overrides.c',
|
||||||
resources
|
resources
|
||||||
],
|
],
|
||||||
install: true,
|
install: true,
|
||||||
dependencies: [
|
dependencies: [
|
||||||
dependency('gtk4'), dependency('jni'), declare_dependency(link_with: libtranslationlayer_so), libart_dep, dependency('dl'), libdl_bio_dep, dependency('libportal')
|
dependency('gtk4'), dependency('jni'), declare_dependency(link_with: libtranslationlayer_so), libart_dep, dependency('dl'), libdl_bio_dep, libc_bio_dep, dependency('libportal'), dependency('fontconfig'),
|
||||||
],
|
],
|
||||||
link_args: [
|
link_args: [
|
||||||
'-rdynamic'
|
'-rdynamic'
|
||||||
],
|
],
|
||||||
install_rpath: get_option('prefix') / get_option('libdir') / 'art:' + get_option('prefix') / get_option('libdir') / 'java/dex/android_translation_layer/natives')
|
install_rpath: get_option('prefix') / get_option('libdir') / 'art' + ':' +
|
||||||
|
get_option('prefix') / get_option('libdir') / 'java/dex/android_translation_layer/natives',
|
||||||
|
c_args: [
|
||||||
|
'-DINSTALL_DATADIR="'+join_paths(get_option('prefix'), get_option('datadir'))+'"'
|
||||||
|
])
|
||||||
|
|
||||||
# hax.jar
|
# hax.jar
|
||||||
subdir('src/api-impl')
|
subdir('src/api-impl')
|
||||||
|
@ -212,5 +220,9 @@ custom_target('test_runner.jar', build_by_default: false, input: [test_runner_ja
|
||||||
command: ['dx', '--dex', '--incremental', '--output='+join_paths(builddir_base, 'test_runner.jar'), test_runner_jar.full_path()])
|
command: ['dx', '--dex', '--incremental', '--output='+join_paths(builddir_base, 'test_runner.jar'), test_runner_jar.full_path()])
|
||||||
|
|
||||||
#framework-res.apk
|
#framework-res.apk
|
||||||
subdir('res')
|
subdir('res/framework-res')
|
||||||
|
|
||||||
|
install_data([
|
||||||
|
'res/fonts.xml'
|
||||||
|
],
|
||||||
|
install_dir: join_paths(get_option('prefix'), get_option('datadir')) + '/atl')
|
||||||
|
|
371
res/fonts.xml
Normal file
|
@ -0,0 +1,371 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
NOTE: this is the newer (L) version of the system font configuration,
|
||||||
|
supporting richer weight selection. Some apps will expect the older
|
||||||
|
version, so please keep system_fonts.xml and fallback_fonts.xml in sync
|
||||||
|
with any changes, even though framework will only read this file.
|
||||||
|
|
||||||
|
All fonts withohut names are added to the default list. Fonts are chosen
|
||||||
|
based on a match: full BCP-47 language tag including script, then just
|
||||||
|
language, and finally order (the first font containing the glyph).
|
||||||
|
|
||||||
|
Order of appearance is also the tiebreaker for weight matching. This is
|
||||||
|
the reason why the 900 weights of Roboto precede the 700 weights - we
|
||||||
|
prefer the former when an 800 weight is requested. Since bold spans
|
||||||
|
effectively add 300 to the weight, this ensures that 900 is the bold
|
||||||
|
paired with the 500 weight, ensuring adequate contrast.
|
||||||
|
-->
|
||||||
|
<familyset version="22">
|
||||||
|
<!-- first font is default -->
|
||||||
|
<family name="sans-serif">
|
||||||
|
<font weight="100" style="normal">Roboto-Thin.ttf</font>
|
||||||
|
<font weight="100" style="italic">Roboto-ThinItalic.ttf</font>
|
||||||
|
<font weight="300" style="normal">Roboto-Light.ttf</font>
|
||||||
|
<font weight="300" style="italic">Roboto-LightItalic.ttf</font>
|
||||||
|
<font weight="400" style="normal">Roboto-Regular.ttf</font>
|
||||||
|
<font weight="400" style="italic">Roboto-Italic.ttf</font>
|
||||||
|
<font weight="500" style="normal">Roboto-Medium.ttf</font>
|
||||||
|
<font weight="500" style="italic">Roboto-MediumItalic.ttf</font>
|
||||||
|
<font weight="900" style="normal">Roboto-Black.ttf</font>
|
||||||
|
<font weight="900" style="italic">Roboto-BlackItalic.ttf</font>
|
||||||
|
<font weight="700" style="normal">Roboto-Bold.ttf</font>
|
||||||
|
<font weight="700" style="italic">Roboto-BoldItalic.ttf</font>
|
||||||
|
</family>
|
||||||
|
|
||||||
|
<!-- Note that aliases must come after the fonts they reference. -->
|
||||||
|
<alias name="sans-serif-thin" to="sans-serif" weight="100" />
|
||||||
|
<alias name="sans-serif-light" to="sans-serif" weight="300" />
|
||||||
|
<alias name="sans-serif-medium" to="sans-serif" weight="500" />
|
||||||
|
<alias name="sans-serif-black" to="sans-serif" weight="900" />
|
||||||
|
<alias name="arial" to="sans-serif" />
|
||||||
|
<alias name="helvetica" to="sans-serif" />
|
||||||
|
<alias name="tahoma" to="sans-serif" />
|
||||||
|
<alias name="verdana" to="sans-serif" />
|
||||||
|
|
||||||
|
<family name="sans-serif-condensed">
|
||||||
|
<font weight="300" style="normal">RobotoCondensed-Light.ttf</font>
|
||||||
|
<font weight="300" style="italic">RobotoCondensed-LightItalic.ttf</font>
|
||||||
|
<font weight="400" style="normal">RobotoCondensed-Regular.ttf</font>
|
||||||
|
<font weight="400" style="italic">RobotoCondensed-Italic.ttf</font>
|
||||||
|
<font weight="700" style="normal">RobotoCondensed-Bold.ttf</font>
|
||||||
|
<font weight="700" style="italic">RobotoCondensed-BoldItalic.ttf</font>
|
||||||
|
</family>
|
||||||
|
<alias name="sans-serif-condensed-light" to="sans-serif-condensed" weight="300" />
|
||||||
|
|
||||||
|
<family name="serif">
|
||||||
|
<font weight="400" style="normal">NotoSerif-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSerif-Bold.ttf</font>
|
||||||
|
<font weight="400" style="italic">NotoSerif-Italic.ttf</font>
|
||||||
|
<font weight="700" style="italic">NotoSerif-BoldItalic.ttf</font>
|
||||||
|
</family>
|
||||||
|
<alias name="times" to="serif" />
|
||||||
|
<alias name="times new roman" to="serif" />
|
||||||
|
<alias name="palatino" to="serif" />
|
||||||
|
<alias name="georgia" to="serif" />
|
||||||
|
<alias name="baskerville" to="serif" />
|
||||||
|
<alias name="goudy" to="serif" />
|
||||||
|
<alias name="fantasy" to="serif" />
|
||||||
|
<alias name="ITC Stone Serif" to="serif" />
|
||||||
|
|
||||||
|
<family name="monospace">
|
||||||
|
<font weight="400" style="normal">DroidSansMono.ttf</font>
|
||||||
|
</family>
|
||||||
|
<alias name="sans-serif-monospace" to="monospace" />
|
||||||
|
<alias name="monaco" to="monospace" />
|
||||||
|
|
||||||
|
<family name="serif-monospace">
|
||||||
|
<font weight="400" style="normal">CutiveMono.ttf</font>
|
||||||
|
</family>
|
||||||
|
<alias name="courier" to="serif-monospace" />
|
||||||
|
<alias name="courier new" to="serif-monospace" />
|
||||||
|
|
||||||
|
<family name="casual">
|
||||||
|
<font weight="400" style="normal">ComingSoon.ttf</font>
|
||||||
|
</family>
|
||||||
|
|
||||||
|
<family name="cursive">
|
||||||
|
<font weight="400" style="normal">DancingScript-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">DancingScript-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
|
||||||
|
<family name="sans-serif-smallcaps">
|
||||||
|
<font weight="400" style="normal">CarroisGothicSC-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
|
||||||
|
<!-- fallback fonts -->
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoNaskhArabic-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoNaskhArabic-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoNaskhArabicUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoNaskhArabicUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansEthiopic-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansEthiopic-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansHebrew-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansHebrew-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansThai-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansThai-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansThaiUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansThaiUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansArmenian-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansArmenian-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansGeorgian-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansGeorgian-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansDevanagari-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansDevanagari-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansDevanagariUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansDevanagariUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<!-- Gujarati should come after Devanagari -->
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansGujarati-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansGujarati-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansGujaratiUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansGujaratiUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<!-- Gurmukhi should come after Devanagari -->
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansGurmukhi-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansGurmukhi-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansGurmukhiUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansGurmukhiUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansTamil-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansTamil-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansTamilUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansTamilUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansMalayalam-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansMalayalam-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansMalayalamUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansMalayalamUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansBengali-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansBengali-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansBengaliUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansBengaliUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansTelugu-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansTelugu-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansTeluguUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansTeluguUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansKannada-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansKannada-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansKannadaUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansKannadaUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansOriya-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansOriya-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansOriyaUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansOriyaUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSinhala-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansSinhala-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansKhmer-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansKhmer-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansKhmerUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansKhmerUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansLao-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansLao-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansLaoUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansLaoUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="elegant">
|
||||||
|
<font weight="400" style="normal">NotoSansMyanmar-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansMyanmar-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family variant="compact">
|
||||||
|
<font weight="400" style="normal">NotoSansMyanmarUI-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansMyanmarUI-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansThaana-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansThaana-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansCham-Regular.ttf</font>
|
||||||
|
<font weight="700" style="normal">NotoSansCham-Bold.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansBalinese-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansBamum-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansBatak-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansBuginese-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansBuhid-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansCanadianAboriginal-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansCherokee-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansCoptic-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansGlagolitic-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansHanunoo-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansJavanese-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansKayahLi-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansLepcha-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansLimbu-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansLisu-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansMandaic-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansMeeteiMayek-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansNewTaiLue-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansNKo-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansOlChiki-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansRejang-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSaurashtra-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSundanese-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSylotiNagri-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSyriacEstrangela-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTagbanwa-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTaiTham-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTaiViet-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTibetan-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTifinagh-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansVai-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansYi-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansSymbols-Regular-Subsetted.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family lang="zh-Hans">
|
||||||
|
<font weight="400" style="normal">NotoSansSC-Regular.otf</font>
|
||||||
|
</family>
|
||||||
|
<family lang="zh-Hant">
|
||||||
|
<font weight="400" style="normal">NotoSansTC-Regular.otf</font>
|
||||||
|
</family>
|
||||||
|
<family lang="ja">
|
||||||
|
<font weight="400" style="normal">NotoSansJP-Regular.otf</font>
|
||||||
|
</family>
|
||||||
|
<family lang="ko">
|
||||||
|
<font weight="400" style="normal">NotoSansKR-Regular.otf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NanumGothic.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoColorEmoji.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">DroidSansFallback.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family lang="ja">
|
||||||
|
<font weight="400" style="normal">MTLmr3m.ttf</font>
|
||||||
|
</family>
|
||||||
|
<!--
|
||||||
|
Tai Le and Mongolian are intentionally kept last, to make sure they don't override
|
||||||
|
the East Asian punctuation for Chinese.
|
||||||
|
-->
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansTaiLe-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
<family>
|
||||||
|
<font weight="400" style="normal">NotoSansMongolian-Regular.ttf</font>
|
||||||
|
</family>
|
||||||
|
</familyset>
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 96 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 456 B After Width: | Height: | Size: 456 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 1,009 B After Width: | Height: | Size: 1,009 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
@ -1,9 +1,9 @@
|
||||||
aapt = find_program('aapt', required: false)
|
aapt = find_program('aapt', required: false)
|
||||||
|
|
||||||
if aapt.found()
|
if aapt.found()
|
||||||
aapt_command = [aapt, 'package', '-x', '-f', '--custom-package', 'com.android.internal', '-S', join_paths(dir_base, 'res/res'), '-A', join_paths(dir_base, 'res/assets'), '-M', join_paths(dir_base, 'res/AndroidManifest.xml'), '-J', join_paths(dir_base, 'src/api-impl/com/android/internal'), '-F', '@OUTPUT@']
|
aapt_command = [aapt, 'package', '-x', '-f', '--custom-package', 'com.android.internal', '-S', join_paths(dir_base, 'res/framework-res/res'), '-A', join_paths(dir_base, 'res/assets'), '-M', join_paths(dir_base, 'res/AndroidManifest.xml'), '-J', join_paths(dir_base, 'src/api-impl/com/android/internal'), '-F', '@OUTPUT@']
|
||||||
else # fallback to prebuilt APK
|
else # fallback to prebuilt APK
|
||||||
aapt_command = ['cp', join_paths(dir_base, 'res/framework-res.apk'), '@OUTPUT@']
|
aapt_command = ['cp', join_paths(dir_base, 'res/framework-res/framework-res.apk'), '@OUTPUT@']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
framework_res = custom_target('framework-res.apk',
|
framework_res = custom_target('framework-res.apk',
|