mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 831354 - Ship fonts for content in Firefox for Android r=mfinkle
--HG-- extra : rebase_source : af87e607085c519132ffd554a8fb76e45925f5b5
This commit is contained in:
parent
ed8660870e
commit
bf6d915aa5
@ -9,7 +9,7 @@ VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = ../locales locales base chrome components modules themes/core app
|
||||
DIRS = ../locales locales base chrome components modules themes/core app fonts
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
PARALLEL_DIRS += $(DEPTH)/xulrunner/tools/redit
|
||||
|
BIN
mobile/android/fonts/CharisSIL-B.ttf
Normal file
BIN
mobile/android/fonts/CharisSIL-B.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/CharisSIL-BI.ttf
Normal file
BIN
mobile/android/fonts/CharisSIL-BI.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/CharisSIL-I.ttf
Normal file
BIN
mobile/android/fonts/CharisSIL-I.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/CharisSIL-R.ttf
Normal file
BIN
mobile/android/fonts/CharisSIL-R.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/GenBasB.ttf
Normal file
BIN
mobile/android/fonts/GenBasB.ttf
Normal file
Binary file not shown.
36
mobile/android/fonts/Makefile.in
Normal file
36
mobile/android/fonts/Makefile.in
Normal file
@ -0,0 +1,36 @@
|
||||
# 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/.
|
||||
|
||||
DEPTH = @DEPTH@
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
packaged_fonts = \
|
||||
CharisSIL-B.ttf \
|
||||
CharisSIL-BI.ttf \
|
||||
CharisSIL-I.ttf \
|
||||
CharisSIL-R.ttf \
|
||||
OpenSans-ExtraBold.ttf \
|
||||
OpenSans-SemiboldItalic.ttf \
|
||||
OpenSans-ExtraBoldItalic.ttf \
|
||||
OpenSans-Italic.ttf \
|
||||
OpenSans-Light.ttf \
|
||||
OpenSans-LightItalic.ttf \
|
||||
OpenSans-Bold.ttf \
|
||||
OpenSans-Regular.ttf \
|
||||
OpenSans-BoldItalic.ttf \
|
||||
OpenSans-Semibold.ttf \
|
||||
$(NULL)
|
||||
|
||||
GARBAGE += $(packaged_fonts)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
include $(topsrcdir)/testing/testsuite-targets.mk
|
||||
|
||||
libs:: $(packaged_fonts)
|
||||
$(INSTALL) $^ $(DIST)/bin/res/fonts/
|
||||
|
BIN
mobile/android/fonts/OpenSans-Bold.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-Bold.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-BoldItalic.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-ExtraBold.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-ExtraBold.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-ExtraBoldItalic.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-ExtraBoldItalic.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-Italic.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-Italic.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-Light.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-Light.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-LightItalic.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-LightItalic.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-Regular.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-Regular.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-Semibold.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-Semibold.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/OpenSans-SemiboldItalic.ttf
Normal file
BIN
mobile/android/fonts/OpenSans-SemiboldItalic.ttf
Normal file
Binary file not shown.
BIN
mobile/android/fonts/SourceSansPro-Black.ttf
Normal file
BIN
mobile/android/fonts/SourceSansPro-Black.ttf
Normal file
Binary file not shown.
@ -3170,10 +3170,11 @@ pref("font.name.sans-serif.x-user-def", "Droid Sans");
|
||||
pref("font.name.monospace.x-user-def", "Droid Sans Mono");
|
||||
pref("font.name-list.sans-serif.x-user-def", "Roboto, Droid Sans");
|
||||
|
||||
pref("font.name.serif.x-western", "Droid Serif");
|
||||
pref("font.name.sans-serif.x-western", "Droid Sans");
|
||||
pref("font.name.serif.x-western", "Charis SIL, Droid Serif");
|
||||
pref("font.name.sans-serif.x-western", "Open Sans, Droid Sans");
|
||||
pref("font.name.monospace.x-western", "Droid Sans Mono");
|
||||
pref("font.name-list.sans-serif.x-western", "Roboto, Droid Sans");
|
||||
pref("font.name-list.sans-serif.x-western", "Open Sans, Roboto, Droid Sans");
|
||||
|
||||
|
||||
pref("font.name.serif.zh-CN", "Droid Serif");
|
||||
pref("font.name.sans-serif.zh-CN", "Droid Sans");
|
||||
|
Loading…
Reference in New Issue
Block a user