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/.
|
|
|
|
|
2017-08-25 20:08:45 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
2014-10-30 14:52:00 +03:00
|
|
|
SPHINX_TREES['sslerrorreport'] = 'content/docs/sslerrorreport'
|
|
|
|
|
2013-10-08 12:59:05 +04:00
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'content/test/general/mochitest.ini',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
|
|
|
'content/test/chrome/chrome.ini',
|
|
|
|
]
|
|
|
|
|
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
2017-07-10 23:17:06 +03:00
|
|
|
'content/test/about/browser.ini',
|
2015-09-25 23:18:29 +03:00
|
|
|
'content/test/alerts/browser.ini',
|
2016-11-30 02:39:14 +03:00
|
|
|
'content/test/captivePortal/browser.ini',
|
2017-02-19 13:02:14 +03:00
|
|
|
'content/test/contextMenu/browser.ini',
|
2017-03-15 02:27:33 +03:00
|
|
|
'content/test/forms/browser.ini',
|
2013-10-08 12:59:05 +04:00
|
|
|
'content/test/general/browser.ini',
|
2017-09-07 23:51:02 +03:00
|
|
|
'content/test/metaTags/browser.ini',
|
2013-10-08 12:59:05 +04:00
|
|
|
'content/test/newtab/browser.ini',
|
2017-03-09 23:05:24 +03:00
|
|
|
'content/test/pageinfo/browser.ini',
|
2017-05-03 00:30:18 +03:00
|
|
|
'content/test/performance/browser.ini',
|
2017-03-23 18:23:48 +03:00
|
|
|
'content/test/permissions/browser.ini',
|
2014-03-03 20:10:51 +04:00
|
|
|
'content/test/plugins/browser.ini',
|
2014-07-06 12:14:48 +04:00
|
|
|
'content/test/popupNotifications/browser.ini',
|
2017-03-21 18:57:42 +03:00
|
|
|
'content/test/popups/browser.ini',
|
2015-02-21 03:18:05 +03:00
|
|
|
'content/test/referrer/browser.ini',
|
2017-05-16 20:31:00 +03:00
|
|
|
'content/test/sidebar/browser.ini',
|
2017-01-24 13:42:09 +03:00
|
|
|
'content/test/siteIdentity/browser.ini',
|
2017-03-16 21:26:01 +03:00
|
|
|
'content/test/static/browser.ini',
|
2017-04-18 21:15:43 +03:00
|
|
|
'content/test/sync/browser.ini',
|
2016-11-11 07:17:48 +03:00
|
|
|
'content/test/tabcrashed/browser.ini',
|
2016-05-21 16:13:10 +03:00
|
|
|
'content/test/tabPrompts/browser.ini',
|
2016-09-17 01:55:55 +03:00
|
|
|
'content/test/tabs/browser.ini',
|
2017-07-19 15:19:21 +03:00
|
|
|
'content/test/touch/browser.ini',
|
2016-02-19 14:54:57 +03:00
|
|
|
'content/test/urlbar/browser.ini',
|
2017-02-28 02:40:59 +03:00
|
|
|
'content/test/webextensions/browser.ini',
|
2016-06-27 13:23:57 +03:00
|
|
|
'content/test/webrtc/browser.ini',
|
2013-10-08 12:59:05 +04:00
|
|
|
]
|
2013-11-27 17:55:07 +04:00
|
|
|
|
|
|
|
DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
|
2015-07-12 04:37:54 +03:00
|
|
|
DEFINES['MOZ_APP_VERSION_DISPLAY'] = CONFIG['MOZ_APP_VERSION_DISPLAY']
|
2014-11-04 19:16:47 +03:00
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['APP_LICENSE_BLOCK'] = '%s/content/overrides/app-license.html' % SRCDIR
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3', 'cocoa'):
|
|
|
|
DEFINES['CONTEXT_COPY_IMAGE_CONTENTS'] = 1
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa'):
|
|
|
|
DEFINES['CAN_DRAW_IN_TITLEBAR'] = 1
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3'):
|
|
|
|
DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1
|
2013-12-10 11:18:11 +04:00
|
|
|
|
2014-01-29 21:19:23 +04:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|