blob: 80fb1fdd3a8abe03783e5111ad549b04c76cd04a [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
Ying Wang8e359812011-10-06 11:14:13 -070020##########################################
Keun young Park08761012012-06-05 15:20:17 -070021# create symlink for given font
22# $(1): new font $(2): link target
23# should be used with eval: $(eval $(call ...))
24define create-font-symlink
25$(PRODUCT_OUT)/system/fonts/$(1) : $(PRODUCT_OUT)/system/fonts/$(2)
26 @echo "Symlink: $$@ -> $$<"
27 @mkdir -p $$(dir $$@)
28 @rm -rf $$@
29 $(hide) ln -sf $$(notdir $$<) $$@
30# this magic makes LOCAL_REQUIRED_MODULES work
31ALL_MODULES.$(1).INSTALLED := \
32 $(ALL_MODULES.$(1).INSTALLED) $(PRODUCT_OUT)/system/fonts/$(1)
33endef
34
35##########################################
Victoria Leasea08f0f82014-05-12 16:05:52 -070036# The following fonts are distributed as symlink only.
Ying Wang8e359812011-10-06 11:14:13 -070037##########################################
Keun young Park08761012012-06-05 15:20:17 -070038$(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf))
39$(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf))
Victoria Leasea08f0f82014-05-12 16:05:52 -070040$(eval $(call create-font-symlink,DroidSerif-Regular.ttf,NotoSerif-Regular.ttf))
41$(eval $(call create-font-symlink,DroidSerif-Bold.ttf,NotoSerif-Bold.ttf))
42$(eval $(call create-font-symlink,DroidSerif-Italic.ttf,NotoSerif-Italic.ttf))
43$(eval $(call create-font-symlink,DroidSerif-BoldItalic.ttf,NotoSerif-BoldItalic.ttf))
Ying Wang8e359812011-10-06 11:14:13 -070044
Victoria Leasef99c12c2014-06-13 07:56:58 -070045extra_font_files := \
46 DroidSans.ttf \
47 DroidSans-Bold.ttf
48
Ying Wang8e359812011-10-06 11:14:13 -070049################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070050# Do not include Motoya on space-constrained devices
51ifneq ($(SMALLER_FONT_FOOTPRINT),true)
Victoria Leasef99c12c2014-06-13 07:56:58 -070052
Ying Wang8e359812011-10-06 11:14:13 -070053include $(CLEAR_VARS)
Russell Brenner1c097a92012-03-28 09:45:27 -070054LOCAL_MODULE := MTLmr3m.ttf
55LOCAL_SRC_FILES := $(LOCAL_MODULE)
56LOCAL_MODULE_CLASS := ETC
57LOCAL_MODULE_TAGS := optional
58LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
59include $(BUILD_PREBUILT)
Victoria Leasef99c12c2014-06-13 07:56:58 -070060extra_font_files += MTLmr3m.ttf
Russell Brenner1c097a92012-03-28 09:45:27 -070061
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070062endif # !SMALLER_FONT_FOOTPRINT
Ying Wang46b20e72011-09-29 18:07:41 -070063
Ying Wang193ec662012-02-13 18:55:41 -080064################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070065# Use DroidSansMono to hang extra_font_files on
66include $(CLEAR_VARS)
67LOCAL_MODULE := DroidSansMono.ttf
68LOCAL_SRC_FILES := $(LOCAL_MODULE)
69LOCAL_MODULE_CLASS := ETC
70LOCAL_MODULE_TAGS := optional
71LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
72LOCAL_REQUIRED_MODULES := $(extra_font_files)
73include $(BUILD_PREBUILT)
74extra_font_files :=
75
76################################
77# Include DroidSansFallback only on non-EXTENDED_FONT_FOOTPRINT builds
78ifneq ($(EXTENDED_FONT_FOOTPRINT),true)
79
80# Include a subset of DroidSansFallback on SMALLER_FONT_FOOTPRINT build
81ifeq ($(SMALLER_FONT_FOOTPRINT),true)
82droidsans_fallback_src := DroidSansFallback.ttf
83else # !SMALLER_FONT_FOOTPRINT
84droidsans_fallback_src := DroidSansFallbackFull.ttf
85endif # SMALLER_FONT_FOOTPRINT
86
Ying Wang46b20e72011-09-29 18:07:41 -070087include $(CLEAR_VARS)
88LOCAL_MODULE := DroidSansFallback.ttf
89LOCAL_SRC_FILES := $(droidsans_fallback_src)
90LOCAL_MODULE_CLASS := ETC
91LOCAL_MODULE_TAGS := optional
92LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
Ying Wang8e359812011-10-06 11:14:13 -070093include $(BUILD_PREBUILT)
Ying Wang46b20e72011-09-29 18:07:41 -070094droidsans_fallback_src :=
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070095
96endif # !EXTENDED_FONT_FOOTPRINT
97
Ying Wang193ec662012-02-13 18:55:41 -080098################################
Roozbeh Pournader32a65c72014-07-24 14:36:04 -070099# Build the rest of font files as prebuilt.
Ying Wang193ec662012-02-13 18:55:41 -0800100
101# $(1): The source file name in LOCAL_PATH.
102# It also serves as the module name and the dest file name.
103define build-one-font-module
104$(eval include $(CLEAR_VARS))\
105$(eval LOCAL_MODULE := $(1))\
106$(eval LOCAL_SRC_FILES := $(1))\
107$(eval LOCAL_MODULE_CLASS := ETC)\
108$(eval LOCAL_MODULE_TAGS := optional)\
109$(eval LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts)\
110$(eval include $(BUILD_PREBUILT))
111endef
112
113font_src_files := \
114 Roboto-Regular.ttf \
115 Roboto-Bold.ttf \
116 Roboto-Italic.ttf \
117 Roboto-BoldItalic.ttf \
Keun young Park08761012012-06-05 15:20:17 -0700118 Clockopia.ttf \
119 AndroidClock.ttf \
120 AndroidClock_Highlight.ttf \
121 AndroidClock_Solid.ttf
122
123ifeq ($(MINIMAL_FONT_FOOTPRINT),true)
124
Victoria Leased0769f62014-05-20 07:53:26 -0700125$(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
Roozbeh Pournadere210ded2014-06-11 15:35:03 -0700126$(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
Keun young Park08761012012-06-05 15:20:17 -0700127$(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
128$(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
Victoria Leased0769f62014-05-20 07:53:26 -0700129$(eval $(call create-font-symlink,Roboto-Medium.ttf,Roboto-Regular.ttf))
130$(eval $(call create-font-symlink,Roboto-MediumItalic.ttf,Roboto-Italic.ttf))
Raph Levienbe456f22012-09-18 15:30:02 -0700131$(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf))
132$(eval $(call create-font-symlink,Roboto-ThinItalic.ttf,Roboto-Italic.ttf))
Keun young Park08761012012-06-05 15:20:17 -0700133$(eval $(call create-font-symlink,RobotoCondensed-Regular.ttf,Roboto-Regular.ttf))
134$(eval $(call create-font-symlink,RobotoCondensed-Bold.ttf,Roboto-Bold.ttf))
135$(eval $(call create-font-symlink,RobotoCondensed-Italic.ttf,Roboto-Italic.ttf))
136$(eval $(call create-font-symlink,RobotoCondensed-BoldItalic.ttf,Roboto-BoldItalic.ttf))
137
138else # !MINIMAL_FONT
139font_src_files += \
Victoria Leased0769f62014-05-20 07:53:26 -0700140 Roboto-Black.ttf \
Roozbeh Pournadere210ded2014-06-11 15:35:03 -0700141 Roboto-BlackItalic.ttf \
Raph Levien289c09a2012-05-09 09:49:21 -0700142 Roboto-Light.ttf \
143 Roboto-LightItalic.ttf \
Victoria Leased0769f62014-05-20 07:53:26 -0700144 Roboto-Medium.ttf \
145 Roboto-MediumItalic.ttf \
Raph Levienbe456f22012-09-18 15:30:02 -0700146 Roboto-Thin.ttf \
147 Roboto-ThinItalic.ttf \
Raph Levien467ea512012-05-10 17:28:20 -0700148 RobotoCondensed-Regular.ttf \
149 RobotoCondensed-Bold.ttf \
150 RobotoCondensed-Italic.ttf \
151 RobotoCondensed-BoldItalic.ttf \
Justin Kohf1596062014-03-25 13:05:41 -0700152 RobotoCondensed-Light.ttf \
Roozbeh Pournadercbd098922014-07-09 09:33:04 -0700153 RobotoCondensed-LightItalic.ttf
Keun young Park08761012012-06-05 15:20:17 -0700154
155endif # !MINIMAL_FONT
Ying Wang193ec662012-02-13 18:55:41 -0800156
157$(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
158
159build-one-font-module :=
160font_src_files :=