mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
9ed4429e08
This patch bundles a color font named "EmojiOne Mozilla", and turn on the necessary code for including the bundled font, on Linux and Windows. With that, users of Linux and Windows <=8.0 is able to see color Emoji on Firefox without support from System. The font bundled is the v0.2.1 version, generated from the project repo in https://github.com/mozilla/emojione-colr with artwork from the original EmojiOne font and Twemoji, under CC BY 4.0 license. Test files, about:license page, and the packager instruction are modified accordingly. MozReview-Commit-ID: 2mmxnA0vS3u
12 lines
443 B
Python
12 lines
443 B
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
if CONFIG['OS_ARCH'] in ('WINNT', 'Linux'):
|
|
DIST_SUBDIR = ''
|
|
FINAL_TARGET_FILES.fonts += [
|
|
'EmojiOneMozilla.ttf'
|
|
]
|