1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/components/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 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 +PARALLEL_DIRS += [ 1.11 + 'about', 1.12 + 'customizableui', 1.13 + 'dirprovider', 1.14 + 'downloads', 1.15 + 'feeds', 1.16 + 'places', 1.17 + 'preferences', 1.18 + 'privatebrowsing', 1.19 + 'search', 1.20 + 'sessionstore', 1.21 + 'shell', 1.22 + 'sidebar', 1.23 + 'tabview', 1.24 + 'migration', 1.25 +] 1.26 + 1.27 +DIRS += ['build'] 1.28 + 1.29 +XPIDL_SOURCES += [ 1.30 + 'nsIBrowserGlue.idl', 1.31 + 'nsIBrowserHandler.idl', 1.32 +] 1.33 + 1.34 +XPIDL_MODULE = 'browsercompsbase' 1.35 + 1.36 +EXTRA_COMPONENTS += [ 1.37 + 'BrowserComponents.manifest', 1.38 +] 1.39 +EXTRA_PP_COMPONENTS += [ 1.40 + 'nsBrowserContentHandler.js', 1.41 + 'nsBrowserGlue.js', 1.42 +] 1.43 + 1.44 +EXTRA_JS_MODULES += [ 1.45 + 'distribution.js', 1.46 +] 1.47 + 1.48 +BROWSER_CHROME_MANIFESTS += [ 1.49 + 'test/browser.ini' 1.50 +] 1.51 + 1.52 +if CONFIG['MOZ_SAFE_BROWSING']: 1.53 + BROWSER_CHROME_MANIFESTS += ['safebrowsing/content/test/browser.ini']