diff options
Diffstat (limited to '')
-rw-r--r-- | comm/mail/themes/moz.build | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/comm/mail/themes/moz.build b/comm/mail/themes/moz.build new file mode 100644 index 0000000000..1fee74dca7 --- /dev/null +++ b/comm/mail/themes/moz.build @@ -0,0 +1,25 @@ +# 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/. + +EXTRA_JS_MODULES += [ + "BuiltInThemes.sys.mjs", + "ThemeVariableMap.sys.mjs", +] + +if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows": + EXTRA_JS_MODULES += [ + "Windows8WindowFrameColor.sys.mjs", + ] + +if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk": + DIRS += ["linux"] +elif CONFIG["MOZ_WIDGET_TOOLKIT"] == "cocoa": + DIRS += ["osx"] +else: + DIRS += ["windows"] + +DIRS += [ + "addons", +] |