summaryrefslogtreecommitdiff
path: root/components/moz.build
diff options
context:
space:
mode:
authorGaming4JC <g4jc@bulletmail.org>2018-05-13 19:56:51 -0400
committerGaming4JC <g4jc@bulletmail.org>2018-05-13 19:56:51 -0400
commit0eb46dae7c3b33c6254930a5f654b1c46982583c (patch)
tree085a5136c06255249da9ddc282c91fb920bdaef0 /components/moz.build
parentbe019759ca0d600f0c4f9441ffd20af6c99b33ab (diff)
downloadiceweasel-uxp-0eb46dae7c3b33c6254930a5f654b1c46982583c.tar.gz
initial iceweasel branding commit
Diffstat (limited to 'components/moz.build')
-rw-r--r--components/moz.build48
1 files changed, 48 insertions, 0 deletions
diff --git a/components/moz.build b/components/moz.build
new file mode 100644
index 0000000..a495802
--- /dev/null
+++ b/components/moz.build
@@ -0,0 +1,48 @@
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
+# 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/.
+
+DIRS += [
+ 'about',
+ 'contextualidentity',
+ 'customizableui',
+ 'dirprovider',
+ 'downloads',
+ 'feeds',
+ 'migration',
+ 'newtab',
+ 'places',
+ 'preferences',
+ 'privatebrowsing',
+ 'search',
+ 'sessionstore',
+ 'shell',
+ 'selfsupport',
+ 'syncedtabs',
+ 'uitour',
+ 'translation',
+]
+
+if CONFIG['MOZ_WEBEXTENSIONS']:
+ DIRS += ['webextensions']
+
+DIRS += ['build']
+
+XPIDL_SOURCES += [
+ 'nsIBrowserGlue.idl',
+ 'nsIBrowserHandler.idl',
+]
+
+XPIDL_MODULE = 'browsercompsbase'
+
+EXTRA_COMPONENTS += [
+ 'BrowserComponents.manifest',
+ 'nsBrowserContentHandler.js',
+ 'nsBrowserGlue.js',
+]
+
+EXTRA_JS_MODULES += [
+ 'distribution.js',
+]