Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a58a1ef7 authored by Inseok Lee's avatar Inseok Lee Committed by Gerrit Code Review
Browse files

Register naver fonts to system.

Shows naver fonts by default on korean locale. Naver fonts will not
appear on other locales.

Change-Id: I7aeb5b63e9f21814c9a841527b41e0df789ddb1f
parent 0f4e7b76
Loading
Loading
Loading
Loading
+10 −1
Original line number Original line Diff line number Diff line
@@ -84,6 +84,14 @@ LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)
include $(BUILD_PREBUILT)
include $(BUILD_PREBUILT)


include $(CLEAR_VARS)
LOCAL_MODULE := fallback_fonts-ko.xml
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)
include $(BUILD_PREBUILT)

droidsans_fallback_src := DroidSansFallbackFull.ttf
droidsans_fallback_src := DroidSansFallbackFull.ttf
extra_font_files := \
extra_font_files := \
	DroidSans.ttf \
	DroidSans.ttf \
@@ -92,7 +100,8 @@ extra_font_files := \
	DroidSansTamil-Regular.ttf \
	DroidSansTamil-Regular.ttf \
	DroidSansTamil-Bold.ttf \
	DroidSansTamil-Bold.ttf \
	MTLmr3m.ttf \
	MTLmr3m.ttf \
	fallback_fonts-ja.xml
	fallback_fonts-ja.xml \
	fallback_fonts-ko.xml
endif  # SMALLER_FONT_FOOTPRINT
endif  # SMALLER_FONT_FOOTPRINT


################################
################################
+93 −0
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
    Fallback Fonts

    This file specifies the fonts, and the priority order, that will be searched for any
    glyphs not handled by the default fonts specified in /system/etc/system_fonts.xml.
    Each entry consists of a family tag and a list of files (file names) which support that
    family. The fonts for each family are listed in the order of the styles that they
    handle (the order is: regular, bold, italic, and bold-italic). The order in which the
    families are listed in this file represents the order in which these fallback fonts
    will be searched for glyphs that are not supported by the default system fonts (which are
    found in /system/etc/system_fonts.xml).

    Note that there is not nameset for fallback fonts, unlike the fonts specified in
    system_fonts.xml. The ability to support specific names in fallback fonts may be supported
    in the future. For now, the lack of files entries here is an indicator to the system that
    these are fallback fonts, instead of default named system fonts.

    There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to
    provide references to other font families that should be used in addition to the default
    fallback fonts. That file can also specify the order in which the fallback fonts should be
    searched, to ensure that a vendor-provided font will be used before another fallback font
    which happens to handle the same glyph.

    Han languages (Chinese, Japanese, and Korean) share a common range of unicode characters;
    their ordering in the fallback or vendor files gives priority to the first in the list.
    Locale-specific ordering can be configured by adding language and region codes to the end
    of the filename (e.g. /system/etc/fallback_fonts-ja.xml). When no region code is used,
    as with this example, all regions are matched. Use separate files for each supported locale.
    The standard fallback file (fallback_fonts.xml) is used when a locale does not have its own
    file. All fallback files must contain the same complete set of fonts; only their ordering
    can differ.
-->
<familyset>
    <family>
        <fileset>
            <file>DroidNaskh-Regular-SystemUI.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansEthiopic-Regular.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansHebrew-Regular.ttf</file>
            <file>DroidSansHebrew-Bold.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansThai.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansArmenian.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansGeorgian.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansDevanagari-Regular.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansTamil-Regular.ttf</file>
            <file>DroidSansTamil-Bold.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>NanumGothic.ttf</file>
            <file>NanumGothicBold.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>MTLmr3m.ttf</file>
        </fileset>
    </family>
    <family>
        <fileset>
            <file>DroidSansFallback.ttf</file>
        </fileset>
    </family>
</familyset>