2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:24 +00: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-28 23:57:59 +00:00
|
|
|
DIRS += [
|
2013-02-25 20:47:24 +00:00
|
|
|
'common',
|
2014-07-08 06:37:57 +00:00
|
|
|
'crypto',
|
|
|
|
'fxaccounts',
|
2013-02-25 20:47:24 +00:00
|
|
|
]
|
|
|
|
|
2013-05-13 03:31:53 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
# 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-28 23:57:59 +00:00
|
|
|
DIRS += ['healthreport']
|
2013-02-25 20:47:24 +00:00
|
|
|
|
2013-05-13 03:31:53 +00:00
|
|
|
if CONFIG['MOZ_DATA_REPORTING']:
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['datareporting']
|
2013-02-25 20:47:24 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_SERVICES_METRICS']:
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['metrics']
|
2013-02-25 20:47:24 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_SERVICES_SYNC']:
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['sync']
|
2013-11-18 01:39:55 +00:00
|
|
|
|
2014-06-07 17:30:19 +00:00
|
|
|
if CONFIG['MOZ_B2G']:
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['mobileid']
|
2014-06-07 17:30:19 +00:00
|
|
|
|
2014-09-04 19:44:00 +00:00
|
|
|
if CONFIG['MOZ_SERVICES_CLOUDSYNC']:
|
|
|
|
DIRS += ['cloudsync']
|
|
|
|
|
2013-11-18 01:39:55 +00:00
|
|
|
SPHINX_TREES['services'] = 'docs'
|