OSDN Git Service

Temporarily disable emoji availability check
authorSiyamed Sinir <siyamed@google.com>
Wed, 23 Mar 2016 00:02:54 +0000 (17:02 -0700)
committerSiyamed Sinir <siyamed@google.com>
Wed, 23 Mar 2016 00:50:58 +0000 (17:50 -0700)
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

tools/fonts/fontchain_lint.py

index c16de7b..a848346 100755 (executable)
@@ -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__':