2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
2014-10-30 11:52:00 +00:00
|
|
|
SPHINX_TREES['sslerrorreport'] = 'content/docs/sslerrorreport'
|
|
|
|
|
2013-10-08 08:59:05 +00:00
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'content/test/general/mochitest.ini',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += [
|
|
|
|
'content/test/chrome/chrome.ini',
|
|
|
|
]
|
|
|
|
|
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
2015-09-25 20:18:29 +00:00
|
|
|
'content/test/alerts/browser.ini',
|
2014-05-10 02:03:08 +00:00
|
|
|
'content/test/chat/browser.ini',
|
2013-10-08 08:59:05 +00:00
|
|
|
'content/test/general/browser.ini',
|
|
|
|
'content/test/newtab/browser.ini',
|
2014-03-03 16:10:51 +00:00
|
|
|
'content/test/plugins/browser.ini',
|
2014-07-06 08:14:48 +00:00
|
|
|
'content/test/popupNotifications/browser.ini',
|
2015-02-21 00:18:05 +00:00
|
|
|
'content/test/referrer/browser.ini',
|
2013-10-08 08:59:05 +00:00
|
|
|
'content/test/social/browser.ini',
|
|
|
|
]
|
2013-11-27 13:55:07 +00:00
|
|
|
|
|
|
|
DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION']
|
2015-07-12 01:37:54 +00:00
|
|
|
DEFINES['MOZ_APP_VERSION_DISPLAY'] = CONFIG['MOZ_APP_VERSION_DISPLAY']
|
2014-11-04 16:16:47 +00:00
|
|
|
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES['APP_LICENSE_BLOCK'] = '%s/content/overrides/app-license.html' % SRCDIR
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3', 'cocoa'):
|
|
|
|
DEFINES['HAVE_SHELL_SERVICE'] = 1
|
|
|
|
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 07:18:11 +00:00
|
|
|
|
2014-01-29 17:19:23 +00:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|