summaryrefslogtreecommitdiff
path: root/tools/fonts
diff options
context:
space:
mode:
authorSiyamed Sinir <siyamed@google.com>2016-03-22 17:02:54 -0700
committerSiyamed Sinir <siyamed@google.com>2016-03-22 17:50:58 -0700
commitc56ad2badbe45aceae4ee6f9ed2010bc15543f49 (patch)
tree8e1361b5ac32c1d97a4eb54f97828a40fb552418 /tools/fonts
parent612a1fe5336665a2ac1e764ab6c2e869521283a4 (diff)
Temporarily disable emoji availability check
On builds where SMALLER_FONT_FOOTPRINT environment variable is set, some of the fonts are not included in the build which causes emoji checks to fail. This CL temporarily disables emoji checks. Bug: 27785690 Change-Id: Ie32f0aa630c84347588fc87630467c14e985940a
Diffstat (limited to 'tools/fonts')
-rwxr-xr-xtools/fonts/fontchain_lint.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/fonts/fontchain_lint.py b/tools/fonts/fontchain_lint.py
index c16de7b3dfc3..a8483464ff47 100755
--- a/tools/fonts/fontchain_lint.py
+++ b/tools/fonts/fontchain_lint.py
@@ -255,8 +255,9 @@ def main():
ucd_path = sys.argv[2]
parse_ucd(ucd_path)
- check_emoji_availability()
- check_emoji_defaults()
+ # Temporarily disable emoji checks for Bug 27785690
+ # check_emoji_availability()
+ # check_emoji_defaults()
if __name__ == '__main__':