blob: 6d8d81ff9203c63a9495cb6c099932cb175df533 [file] [log] [blame]
Ying Wang46b20e72011-09-29 18:07:41 -07001# Copyright (C) 2011 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# We have to use BUILD_PREBUILT instead of PRODUCT_COPY_FIES,
16# because SMALLER_FONT_FOOTPRINT is only available in Android.mks.
17
18LOCAL_PATH := $(call my-dir)
19
Roozbeh Pournader49455ab2015-05-12 16:00:55 -070020# Use full Noto Sans Japanese font on extended footprint
21ifeq ($(EXTENDED_FONT_FOOTPRINT),true)
22FONT_NOTOSANS_JP_FULL := true
23endif
24
Ying Wang8e359812011-10-06 11:14:13 -070025##########################################
Keun young Park08761012012-06-05 15:20:17 -070026# create symlink for given font
27# $(1): new font $(2): link target
28# should be used with eval: $(eval $(call ...))
29define create-font-symlink
30$(PRODUCT_OUT)/system/fonts/$(1) : $(PRODUCT_OUT)/system/fonts/$(2)
31 @echo "Symlink: $$@ -> $$<"
32 @mkdir -p $$(dir $$@)
33 @rm -rf $$@
34 $(hide) ln -sf $$(notdir $$<) $$@
35# this magic makes LOCAL_REQUIRED_MODULES work
36ALL_MODULES.$(1).INSTALLED := \
37 $(ALL_MODULES.$(1).INSTALLED) $(PRODUCT_OUT)/system/fonts/$(1)
38endef
39
40##########################################
Victoria Leasea08f0f82014-05-12 16:05:52 -070041# The following fonts are distributed as symlink only.
Ying Wang8e359812011-10-06 11:14:13 -070042##########################################
Keun young Park08761012012-06-05 15:20:17 -070043$(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf))
44$(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf))
Victoria Leasea08f0f82014-05-12 16:05:52 -070045$(eval $(call create-font-symlink,DroidSerif-Regular.ttf,NotoSerif-Regular.ttf))
46$(eval $(call create-font-symlink,DroidSerif-Bold.ttf,NotoSerif-Bold.ttf))
47$(eval $(call create-font-symlink,DroidSerif-Italic.ttf,NotoSerif-Italic.ttf))
48$(eval $(call create-font-symlink,DroidSerif-BoldItalic.ttf,NotoSerif-BoldItalic.ttf))
Ying Wang8e359812011-10-06 11:14:13 -070049
Victoria Leasef99c12c2014-06-13 07:56:58 -070050extra_font_files := \
51 DroidSans.ttf \
52 DroidSans-Bold.ttf
53
Ying Wang8e359812011-10-06 11:14:13 -070054################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070055# Do not include Motoya on space-constrained devices
56ifneq ($(SMALLER_FONT_FOOTPRINT),true)
Kris Giesing6180e5b2015-03-26 15:37:46 -070057# Do not include Motoya if we are including full NotoSans
Roozbeh Pournader5f49c282015-04-29 15:38:07 -070058ifneq ($(FONT_NOTOSANS_JP_FULL),true)
Victoria Leasef99c12c2014-06-13 07:56:58 -070059
Ying Wang8e359812011-10-06 11:14:13 -070060include $(CLEAR_VARS)
Russell Brenner1c097a92012-03-28 09:45:27 -070061LOCAL_MODULE := MTLmr3m.ttf
62LOCAL_SRC_FILES := $(LOCAL_MODULE)
63LOCAL_MODULE_CLASS := ETC
64LOCAL_MODULE_TAGS := optional
65LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
66include $(BUILD_PREBUILT)
Victoria Leasef99c12c2014-06-13 07:56:58 -070067extra_font_files += MTLmr3m.ttf
Russell Brenner1c097a92012-03-28 09:45:27 -070068
Roozbeh Pournader5f49c282015-04-29 15:38:07 -070069endif # !FONT_NOTOSANS_JP_FULL
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070070endif # !SMALLER_FONT_FOOTPRINT
Ying Wang46b20e72011-09-29 18:07:41 -070071
Ying Wang193ec662012-02-13 18:55:41 -080072################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070073# Use DroidSansMono to hang extra_font_files on
74include $(CLEAR_VARS)
75LOCAL_MODULE := DroidSansMono.ttf
76LOCAL_SRC_FILES := $(LOCAL_MODULE)
77LOCAL_MODULE_CLASS := ETC
78LOCAL_MODULE_TAGS := optional
79LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
80LOCAL_REQUIRED_MODULES := $(extra_font_files)
81include $(BUILD_PREBUILT)
82extra_font_files :=
83
84################################
85# Include DroidSansFallback only on non-EXTENDED_FONT_FOOTPRINT builds
86ifneq ($(EXTENDED_FONT_FOOTPRINT),true)
87
88# Include a subset of DroidSansFallback on SMALLER_FONT_FOOTPRINT build
89ifeq ($(SMALLER_FONT_FOOTPRINT),true)
90droidsans_fallback_src := DroidSansFallback.ttf
91else # !SMALLER_FONT_FOOTPRINT
92droidsans_fallback_src := DroidSansFallbackFull.ttf
93endif # SMALLER_FONT_FOOTPRINT
94
Ying Wang46b20e72011-09-29 18:07:41 -070095include $(CLEAR_VARS)
96LOCAL_MODULE := DroidSansFallback.ttf
97LOCAL_SRC_FILES := $(droidsans_fallback_src)
98LOCAL_MODULE_CLASS := ETC
99LOCAL_MODULE_TAGS := optional
100LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
Ying Wang8e359812011-10-06 11:14:13 -0700101include $(BUILD_PREBUILT)
Ying Wang46b20e72011-09-29 18:07:41 -0700102droidsans_fallback_src :=
Roozbeh Pournader32a65c72014-07-24 14:36:04 -0700103
104endif # !EXTENDED_FONT_FOOTPRINT
105
Ying Wang193ec662012-02-13 18:55:41 -0800106################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -0700107# Build the rest of font files as prebuilt.
Ying Wang193ec662012-02-13 18:55:41 -0800108
109# $(1): The source file name in LOCAL_PATH.
110# It also serves as the module name and the dest file name.
111define build-one-font-module
112$(eval include $(CLEAR_VARS))\
113$(eval LOCAL_MODULE := $(1))\
114$(eval LOCAL_SRC_FILES := $(1))\
115$(eval LOCAL_MODULE_CLASS := ETC)\
116$(eval LOCAL_MODULE_TAGS := optional)\
117$(eval LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts)\
118$(eval include $(BUILD_PREBUILT))
119endef
120
121font_src_files := \
Keun young Park08761012012-06-05 15:20:17 -0700122 Clockopia.ttf \
123 AndroidClock.ttf \
124 AndroidClock_Highlight.ttf \
125 AndroidClock_Solid.ttf
126
Ying Wang193ec662012-02-13 18:55:41 -0800127$(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
128
129build-one-font-module :=
130font_src_files :=