2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:24 +04:00
|
|
|
# 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/.
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 00:47:24 +04:00
|
|
|
'common',
|
2014-07-08 10:37:57 +04:00
|
|
|
'crypto',
|
2013-02-26 00:47:24 +04:00
|
|
|
]
|
|
|
|
|
2015-08-25 21:28:41 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android' or CONFIG['MOZ_B2GDROID']:
|
2015-08-20 02:44:09 +03:00
|
|
|
DIRS += ['fxaccounts']
|
|
|
|
|
2015-08-25 21:28:41 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
2013-05-13 07:31:53 +04:00
|
|
|
# MOZ_SERVICES_HEALTHREPORT and therefore MOZ_DATA_REPORTING are
|
|
|
|
# defined on Android, but these features are implemented using Java.
|
|
|
|
if CONFIG['MOZ_SERVICES_HEALTHREPORT']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['healthreport']
|
2013-02-26 00:47:24 +04:00
|
|
|
|
2013-05-13 07:31:53 +04:00
|
|
|
if CONFIG['MOZ_DATA_REPORTING']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['datareporting']
|
2013-02-26 00:47:24 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_SERVICES_METRICS']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['metrics']
|
2013-02-26 00:47:24 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_SERVICES_SYNC']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['sync']
|
2013-11-18 05:39:55 +04:00
|
|
|
|
2015-08-25 23:42:24 +03:00
|
|
|
if CONFIG['MOZ_B2G'] or CONFIG['MOZ_B2GDROID']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['mobileid']
|
2014-06-07 21:30:19 +04:00
|
|
|
|
2014-09-04 23:44:00 +04:00
|
|
|
if CONFIG['MOZ_SERVICES_CLOUDSYNC']:
|
|
|
|
DIRS += ['cloudsync']
|
|
|
|
|
2013-11-18 05:39:55 +04:00
|
|
|
SPHINX_TREES['services'] = 'docs'
|