diff options
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/fonts/README.txt | 9 | ||||
-rw-r--r-- | toolkit/fonts/TwemojiMozilla.ttf | bin | 0 -> 1244336 bytes | |||
-rw-r--r-- | toolkit/fonts/moz.build | 8 | ||||
-rw-r--r-- | toolkit/moz.build | 3 |
4 files changed, 20 insertions, 0 deletions
diff --git a/toolkit/fonts/README.txt b/toolkit/fonts/README.txt new file mode 100644 index 000000000..bf5cb7e6e --- /dev/null +++ b/toolkit/fonts/README.txt @@ -0,0 +1,9 @@ +Twemoji Mozilla +================ + +The upstream repository of Twemoji Mozilla can be found at + + https://github.com/mozilla/twemoji-colr + +Please refer commit history for the current version of the font. +This file purposely omits the version, so there is no need to update it here. diff --git a/toolkit/fonts/TwemojiMozilla.ttf b/toolkit/fonts/TwemojiMozilla.ttf Binary files differnew file mode 100644 index 000000000..d79250cb0 --- /dev/null +++ b/toolkit/fonts/TwemojiMozilla.ttf diff --git a/toolkit/fonts/moz.build b/toolkit/fonts/moz.build new file mode 100644 index 000000000..fb6a9b24c --- /dev/null +++ b/toolkit/fonts/moz.build @@ -0,0 +1,8 @@ +# -*- 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'): + FINAL_TARGET_FILES.fonts += ['TwemojiMozilla.ttf'] diff --git a/toolkit/moz.build b/toolkit/moz.build index 397444828..b02d122cd 100644 --- a/toolkit/moz.build +++ b/toolkit/moz.build @@ -19,6 +19,9 @@ DIRS += [ 'themes', ] +if CONFIG['MOZ_BUNDLED_FONTS']: + DIRS += ['fonts'] + if CONFIG['MOZ_JETPACK']: DIRS += ['jetpack'] |