1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 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 + 'components', 1.12 + 'content', 1.13 + 'devtools', 1.14 + 'forgetaboutsite', 1.15 + 'identity', 1.16 + 'locales', 1.17 + 'modules', 1.18 + 'mozapps/downloads', 1.19 + 'mozapps/extensions', 1.20 + 'mozapps/handling', 1.21 + 'mozapps/preferences', 1.22 + 'mozapps/plugins', 1.23 + 'obsolete', 1.24 + 'profile', 1.25 + 'themes', 1.26 + 'webapps', 1.27 +] 1.28 + 1.29 +DIRS += ['mozapps/update'] 1.30 + 1.31 +if CONFIG['MOZ_MAINTENANCE_SERVICE']: 1.32 + DIRS += ['components/maintenanceservice'] 1.33 + 1.34 +DIRS += ['xre'] 1.35 + 1.36 +if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): 1.37 + PARALLEL_DIRS += ['system/unixproxy'] 1.38 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa': 1.39 + PARALLEL_DIRS += ['system/osxproxy'] 1.40 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': 1.41 + PARALLEL_DIRS += ['system/windowsproxy'] 1.42 +elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android': 1.43 + PARALLEL_DIRS += ['system/androidproxy'] 1.44 + 1.45 +if CONFIG['MOZ_CRASHREPORTER']: 1.46 + PARALLEL_DIRS += ['crashreporter'] 1.47 +elif CONFIG['MOZ_ENABLE_PROFILER_SPS']: 1.48 + # Profiler requires some crashreporter code, 1.49 + # so build it even if crashreporter is disabled. 1.50 + PARALLEL_DIRS += [ 1.51 + 'crashreporter/google-breakpad/src/common', 1.52 + 'crashreporter/google-breakpad/src/processor', 1.53 + ] 1.54 + if CONFIG['OS_ARCH'] == 'Darwin': 1.55 + PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/mac'] 1.56 + elif CONFIG['OS_ARCH'] == 'Linux': 1.57 + PARALLEL_DIRS += ['crashreporter/google-breakpad/src/common/linux']