Ying Wang | 46b20e7 | 2011-09-29 18:07:41 -0700 | [diff] [blame] | 1 | # 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 | |
| 18 | LOCAL_PATH := $(call my-dir) |
| 19 | |
Ying Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 20 | ########################################## |
Keun young Park | 0876101 | 2012-06-05 15:20:17 -0700 | [diff] [blame] | 21 | # create symlink for given font |
| 22 | # $(1): new font $(2): link target |
| 23 | # should be used with eval: $(eval $(call ...)) |
| 24 | define 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 |
| 31 | ALL_MODULES.$(1).INSTALLED := \ |
| 32 | $(ALL_MODULES.$(1).INSTALLED) $(PRODUCT_OUT)/system/fonts/$(1) |
| 33 | endef |
| 34 | |
| 35 | ########################################## |
Victoria Lease | a08f0f8 | 2014-05-12 16:05:52 -0700 | [diff] [blame] | 36 | # The following fonts are distributed as symlink only. |
Ying Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 37 | ########################################## |
Keun young Park | 0876101 | 2012-06-05 15:20:17 -0700 | [diff] [blame] | 38 | $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf)) |
| 39 | $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf)) |
Victoria Lease | a08f0f8 | 2014-05-12 16:05:52 -0700 | [diff] [blame] | 40 | $(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 Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 44 | |
Victoria Lease | f99c12c | 2014-06-13 07:56:58 -0700 | [diff] [blame] | 45 | extra_font_files := \ |
| 46 | DroidSans.ttf \ |
| 47 | DroidSans-Bold.ttf |
| 48 | |
Ying Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 49 | ################################ |
Roozbeh Pournader | 32a65c7 | 2014-07-24 14:36:04 -0700 | [diff] [blame] | 50 | # Do not include Motoya on space-constrained devices |
| 51 | ifneq ($(SMALLER_FONT_FOOTPRINT),true) |
Kris Giesing | 6180e5b | 2015-03-26 15:37:46 -0700 | [diff] [blame] | 52 | # Do not include Motoya if we are including full NotoSans |
Roozbeh Pournader | 5f49c28 | 2015-04-29 15:38:07 -0700 | [diff] [blame] | 53 | ifneq ($(FONT_NOTOSANS_JP_FULL),true) |
Victoria Lease | f99c12c | 2014-06-13 07:56:58 -0700 | [diff] [blame] | 54 | |
Ying Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 55 | include $(CLEAR_VARS) |
Russell Brenner | 1c097a9 | 2012-03-28 09:45:27 -0700 | [diff] [blame] | 56 | LOCAL_MODULE := MTLmr3m.ttf |
| 57 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 58 | LOCAL_MODULE_CLASS := ETC |
| 59 | LOCAL_MODULE_TAGS := optional |
| 60 | LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts |
| 61 | include $(BUILD_PREBUILT) |
Victoria Lease | f99c12c | 2014-06-13 07:56:58 -0700 | [diff] [blame] | 62 | extra_font_files += MTLmr3m.ttf |
Russell Brenner | 1c097a9 | 2012-03-28 09:45:27 -0700 | [diff] [blame] | 63 | |
Roozbeh Pournader | 5f49c28 | 2015-04-29 15:38:07 -0700 | [diff] [blame] | 64 | endif # !FONT_NOTOSANS_JP_FULL |
Roozbeh Pournader | 32a65c7 | 2014-07-24 14:36:04 -0700 | [diff] [blame] | 65 | endif # !SMALLER_FONT_FOOTPRINT |
Ying Wang | 46b20e7 | 2011-09-29 18:07:41 -0700 | [diff] [blame] | 66 | |
Ying Wang | 193ec66 | 2012-02-13 18:55:41 -0800 | [diff] [blame] | 67 | ################################ |
Roozbeh Pournader | 32a65c7 | 2014-07-24 14:36:04 -0700 | [diff] [blame] | 68 | # Use DroidSansMono to hang extra_font_files on |
| 69 | include $(CLEAR_VARS) |
| 70 | LOCAL_MODULE := DroidSansMono.ttf |
| 71 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 72 | LOCAL_MODULE_CLASS := ETC |
| 73 | LOCAL_MODULE_TAGS := optional |
| 74 | LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts |
| 75 | LOCAL_REQUIRED_MODULES := $(extra_font_files) |
| 76 | include $(BUILD_PREBUILT) |
| 77 | extra_font_files := |
| 78 | |
| 79 | ################################ |
| 80 | # Include DroidSansFallback only on non-EXTENDED_FONT_FOOTPRINT builds |
| 81 | ifneq ($(EXTENDED_FONT_FOOTPRINT),true) |
| 82 | |
| 83 | # Include a subset of DroidSansFallback on SMALLER_FONT_FOOTPRINT build |
| 84 | ifeq ($(SMALLER_FONT_FOOTPRINT),true) |
| 85 | droidsans_fallback_src := DroidSansFallback.ttf |
| 86 | else # !SMALLER_FONT_FOOTPRINT |
| 87 | droidsans_fallback_src := DroidSansFallbackFull.ttf |
| 88 | endif # SMALLER_FONT_FOOTPRINT |
| 89 | |
Ying Wang | 46b20e7 | 2011-09-29 18:07:41 -0700 | [diff] [blame] | 90 | include $(CLEAR_VARS) |
| 91 | LOCAL_MODULE := DroidSansFallback.ttf |
| 92 | LOCAL_SRC_FILES := $(droidsans_fallback_src) |
| 93 | LOCAL_MODULE_CLASS := ETC |
| 94 | LOCAL_MODULE_TAGS := optional |
| 95 | LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts |
Ying Wang | 8e35981 | 2011-10-06 11:14:13 -0700 | [diff] [blame] | 96 | include $(BUILD_PREBUILT) |
Ying Wang | 46b20e7 | 2011-09-29 18:07:41 -0700 | [diff] [blame] | 97 | droidsans_fallback_src := |
Roozbeh Pournader | 32a65c7 | 2014-07-24 14:36:04 -0700 | [diff] [blame] | 98 | |
| 99 | endif # !EXTENDED_FONT_FOOTPRINT |
| 100 | |
Ying Wang | 193ec66 | 2012-02-13 18:55:41 -0800 | [diff] [blame] | 101 | ################################ |
Roozbeh Pournader | 32a65c7 | 2014-07-24 14:36:04 -0700 | [diff] [blame] | 102 | # Build the rest of font files as prebuilt. |
Ying Wang | 193ec66 | 2012-02-13 18:55:41 -0800 | [diff] [blame] | 103 | |
| 104 | # $(1): The source file name in LOCAL_PATH. |
| 105 | # It also serves as the module name and the dest file name. |
| 106 | define build-one-font-module |
| 107 | $(eval include $(CLEAR_VARS))\ |
| 108 | $(eval LOCAL_MODULE := $(1))\ |
| 109 | $(eval LOCAL_SRC_FILES := $(1))\ |
| 110 | $(eval LOCAL_MODULE_CLASS := ETC)\ |
| 111 | $(eval LOCAL_MODULE_TAGS := optional)\ |
| 112 | $(eval LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts)\ |
| 113 | $(eval include $(BUILD_PREBUILT)) |
| 114 | endef |
| 115 | |
| 116 | font_src_files := \ |
Keun young Park | 0876101 | 2012-06-05 15:20:17 -0700 | [diff] [blame] | 117 | Clockopia.ttf \ |
| 118 | AndroidClock.ttf \ |
| 119 | AndroidClock_Highlight.ttf \ |
| 120 | AndroidClock_Solid.ttf |
| 121 | |
Ying Wang | 193ec66 | 2012-02-13 18:55:41 -0800 | [diff] [blame] | 122 | $(foreach f, $(font_src_files), $(call build-one-font-module, $(f))) |
| 123 | |
| 124 | build-one-font-module := |
| 125 | font_src_files := |