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"]
|
|
|
|
|
2019-08-20 20:14:50 +03:00
|
|
|
SPHINX_TREES["/browser"] = "docs"
|
2014-08-26 15:16:24 +04:00
|
|
|
|
2019-06-08 07:37:31 +03:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
"l10n-registry.manifest",
|
|
|
|
]
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2018-07-30 05:42:46 +03:00
|
|
|
"actors",
|
2013-02-26 00:47:18 +04:00
|
|
|
"base",
|
|
|
|
"components",
|
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",
|
2019-07-29 23:11:27 +03:00
|
|
|
"fxr",
|
2013-02-26 00:47:18 +04:00
|
|
|
"locales",
|
|
|
|
"modules",
|
|
|
|
"themes",
|
|
|
|
"extensions",
|
2022-09-15 17:58:07 +03:00
|
|
|
"branding",
|
2013-02-26 00:47:18 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
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
|
|
|
|
2017-11-09 22:39:27 +03:00
|
|
|
# These defines are read in firefox.js
|
|
|
|
DEFINES["APP_VERSION"] = CONFIG["MOZ_APP_VERSION"]
|
|
|
|
|
|
|
|
for cdm in CONFIG["MOZ_EME_MODULES"]:
|
|
|
|
DEFINES["MOZ_%s_EME" % cdm.upper()] = True
|
|
|
|
|
|
|
|
if CONFIG["MOZ_GPSD"]:
|
|
|
|
DEFINES["MOZ_GPSD"] = True
|
|
|
|
|
2021-03-27 23:43:26 +03:00
|
|
|
if CONFIG["MOZ_UPDATE_AGENT"]:
|
|
|
|
DEFINES["MOZ_UPDATE_AGENT"] = True
|
|
|
|
|
2023-03-28 20:06:26 +03:00
|
|
|
if CONFIG["MOZ_ARTIFACT_BUILDS"]:
|
|
|
|
DEFINES["MOZ_ARTIFACT_BUILDS"] = True
|
|
|
|
|
2017-11-09 22:39:27 +03:00
|
|
|
# These files are specified in this moz.build to pick up DIST_SUBDIR as set in
|
|
|
|
# this directory, which is un-set in browser/app.
|
|
|
|
JS_PREFERENCE_PP_FILES += [
|
|
|
|
"app/profile/firefox.js",
|
|
|
|
]
|
|
|
|
FINAL_TARGET_FILES.defaults += ["app/permissions"]
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
2020-06-09 18:54:10 +03:00
|
|
|
SCHEDULES.exclusive = ["linux", "macosx", "windows"]
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("Makefile.in"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("*.mk"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("**/moz.build"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("moz.configure"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("app.mozbuild"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("moz.build"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("confvars.sh"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("LICENSE"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("branding/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("config/**"):
|
2018-03-14 23:44:46 +03:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-08-25 20:08:45 +03:00
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Telemetry")
|
|
|
|
|
|
|
|
with Files("fonts/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics: Text")
|
|
|
|
|
|
|
|
with Files("installer/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Installer")
|
|
|
|
|
|
|
|
with Files("tools/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
2019-06-08 07:37:31 +03:00
|
|
|
|
|
|
|
with Files("l10n-registry.manifest"):
|
|
|
|
BUG_COMPONENT = ("Core", "Localization")
|