1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +MOCHITEST_MANIFESTS += [ 1.11 + 'content/test/general/mochitest.ini', 1.12 +] 1.13 + 1.14 +MOCHITEST_CHROME_MANIFESTS += [ 1.15 + 'content/test/chrome/chrome.ini', 1.16 +] 1.17 + 1.18 +BROWSER_CHROME_MANIFESTS += [ 1.19 + 'content/test/general/browser.ini', 1.20 + 'content/test/newtab/browser.ini', 1.21 + 'content/test/plugins/browser.ini', 1.22 + 'content/test/social/browser.ini', 1.23 +] 1.24 + 1.25 +DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] 1.26 +DEFINES['APP_LICENSE_BLOCK'] = '%s/content/overrides/app-license.html' % SRCDIR 1.27 + 1.28 +if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3', 'cocoa'): 1.29 + DEFINES['HAVE_SHELL_SERVICE'] = 1 1.30 + DEFINES['CONTEXT_COPY_IMAGE_CONTENTS'] = 1 1.31 + 1.32 +if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'cocoa'): 1.33 + DEFINES['CAN_DRAW_IN_TITLEBAR'] = 1 1.34 + 1.35 +if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('windows', 'gtk2', 'gtk3'): 1.36 + DEFINES['MENUBAR_CAN_AUTOHIDE'] = 1 1.37 + 1.38 +JAR_MANIFESTS += ['jar.mn']