mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
12404fede5
MozReview-Commit-ID: FwD92fataAy --HG-- rename : services/blocklists/addons.json => services/settings/dumps/blocklists/addons.json rename : services/blocklists/certificates.json => services/settings/dumps/blocklists/certificates.json rename : services/blocklists/gfx.json => services/settings/dumps/blocklists/gfx.json rename : services/blocklists/plugins.json => services/settings/dumps/blocklists/plugins.json rename : services/blocklists/moz.build => services/settings/dumps/moz.build rename : services/blocklists/pins.json => services/settings/dumps/pinning/pins.json rename : services/blocklists/readme.md => services/settings/dumps/readme.md extra : rebase_source : f659d946227db7b4266202283f44c1b3eadf53f1
23 lines
570 B
Python
23 lines
570 B
Python
# -*- Mode: python; 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/.
|
|
|
|
with Files('moz.build'):
|
|
BUG_COMPONENT = ('Firefox Build System', 'General')
|
|
|
|
DIRS += [
|
|
'common',
|
|
'crypto',
|
|
'settings',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
DIRS += [
|
|
'fxaccounts',
|
|
]
|
|
|
|
if CONFIG['MOZ_SERVICES_SYNC']:
|
|
DIRS += ['sync']
|