2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:18 +04: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 15:16:24 +04:00
|
|
|
SPHINX_TREES['browser'] = 'docs'
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 00:47:18 +04:00
|
|
|
'base',
|
|
|
|
'components',
|
2014-03-19 01:52:28 +04: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 23:58:49 +03:00
|
|
|
'fonts',
|
2013-02-26 00:47:18 +04:00
|
|
|
'locales',
|
|
|
|
'modules',
|
|
|
|
'themes',
|
|
|
|
'extensions',
|
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'app',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MAKENSISU']:
|
|
|
|
DIRS += ['installer/windows']
|
|
|
|
|
2016-01-20 09:40:34 +03:00
|
|
|
TEST_DIRS += [
|
|
|
|
'tools/mozscreenshots',
|
|
|
|
]
|
|
|
|
|
2013-10-21 22:10:04 +04:00
|
|
|
DIST_SUBDIR = 'browser'
|
|
|
|
export('DIST_SUBDIR')
|
2016-08-18 01:02:31 +03: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',
|
|
|
|
]
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("Makefile.in"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("*.mk"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("**/moz.build"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("moz.configure"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("app.mozbuild"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("moz.build"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("confvars.sh"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("LICENSE"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("branding/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("config/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Build Config")
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Telemetry")
|
|
|
|
|
|
|
|
with Files("docs/DirectoryLinksProvider.rst"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "New Tab Page")
|
|
|
|
|
|
|
|
with Files("fonts/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics: Text")
|
|
|
|
|
|
|
|
with Files("installer/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Installer")
|
|
|
|
|
|
|
|
with Files("tools/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|