2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +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/.
|
|
|
|
|
2017-02-02 14:33:47 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Networking')
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 00:47:23 +04:00
|
|
|
'base',
|
|
|
|
'cookie',
|
|
|
|
'dns',
|
|
|
|
'socket',
|
|
|
|
'mime',
|
|
|
|
'streamconv',
|
|
|
|
'cache',
|
2013-09-20 13:11:25 +04:00
|
|
|
'cache2',
|
2013-02-26 00:47:23 +04:00
|
|
|
'protocol',
|
|
|
|
'system',
|
|
|
|
'ipc',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_SRTP']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['srtp/src']
|
2013-02-26 00:47:23 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_SCTP']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['sctp/src', 'sctp/datachannel']
|
2013-02-26 00:47:23 +04:00
|
|
|
|
|
|
|
if CONFIG['NECKO_WIFI']:
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['wifi']
|
2013-02-26 00:47:23 +04:00
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['locales']
|
2013-02-26 00:47:23 +04:00
|
|
|
|
|
|
|
DIRS += ['build']
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += ['test']
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2013-10-24 01:43:32 +04:00
|
|
|
CONFIGURE_DEFINE_FILES += ['necko-config.h']
|
2016-03-01 11:17:29 +03:00
|
|
|
EXPORTS += ['!necko-config.h']
|