mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
e90bd4aabb
MozReview-Commit-ID: 63yJGdgPbhe --HG-- extra : rebase_source : 2256e0a12588703a83f4cba06971231ac3c64592 extra : amend_source : 1f35a04191f37225986bd7ff4d0b6b2c34a71b05 extra : histedit_source : 82d351700936c8e1297eeca91ce00f96340e2f2c
23 lines
588 B
Python
23 lines
588 B
Python
# -*- 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/.
|
|
|
|
DIRS += [
|
|
'common',
|
|
'crypto',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
DIRS += ['fxaccounts']
|
|
|
|
if CONFIG['MOZ_SERVICES_SYNC']:
|
|
DIRS += ['sync']
|
|
|
|
if CONFIG['MOZ_B2G']:
|
|
DIRS += ['mobileid']
|
|
|
|
if CONFIG['MOZ_SERVICES_CLOUDSYNC']:
|
|
DIRS += ['cloudsync']
|