2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:18 +00:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
CONFIGURE_SUBST_FILES += ['installer/Makefile']
|
|
|
|
|
2014-08-26 11:16:24 +00:00
|
|
|
SPHINX_TREES['browser'] = 'docs'
|
|
|
|
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += [
|
2013-02-25 20:47:18 +00:00
|
|
|
'base',
|
|
|
|
'components',
|
2014-03-18 21:52:28 +00:00
|
|
|
'experiments',
|
Bug 1231701 - Ship our own variant of EmojiOne on Windows and Linux, r=glandium, r=dolske, r=jfkthame, r=gerv
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
2016-06-15 20:58:49 +00:00
|
|
|
'fonts',
|
2013-02-25 20:47:18 +00:00
|
|
|
'locales',
|
|
|
|
'modules',
|
|
|
|
'themes',
|
|
|
|
'extensions',
|
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'app',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MAKENSISU']:
|
|
|
|
DIRS += ['installer/windows']
|
|
|
|
|
2016-01-20 06:40:34 +00:00
|
|
|
TEST_DIRS += [
|
|
|
|
'tools/mozscreenshots',
|
|
|
|
]
|
|
|
|
|
2013-10-21 18:10:04 +00:00
|
|
|
DIST_SUBDIR = 'browser'
|
|
|
|
export('DIST_SUBDIR')
|
2016-08-17 22:02:31 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_ARTIFACT_BUILDS']:
|
|
|
|
# Ensure a pre-built interfaces.xpt installed to the objdir by the artifact
|
|
|
|
# code is included by the top-level chrome.manifest.
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'../build/prebuilt-interfaces.manifest',
|
|
|
|
]
|