mirror of
https://github.com/roytam1/palemoon26.git
synced 2026-05-26 13:58:38 +00:00
37 lines
1.0 KiB
INI
37 lines
1.0 KiB
INI
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
PARALLEL_DIRS += [
|
|
'components',
|
|
'content',
|
|
'devtools',
|
|
'forgetaboutsite',
|
|
'locales',
|
|
'modules',
|
|
'mozapps/downloads',
|
|
'mozapps/extensions',
|
|
'mozapps/handling',
|
|
'mozapps/preferences',
|
|
'mozapps/plugins',
|
|
'obsolete',
|
|
'profile',
|
|
'themes',
|
|
'webapps',
|
|
]
|
|
|
|
DIRS += ['mozapps/update']
|
|
|
|
DIRS += ['xre']
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'):
|
|
PARALLEL_DIRS += ['system/unixproxy']
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
PARALLEL_DIRS += ['system/osxproxy']
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
|
PARALLEL_DIRS += ['system/windowsproxy']
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
PARALLEL_DIRS += ['system/androidproxy']
|