2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:20:02 +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/.
|
|
|
|
|
2015-03-11 02:41:38 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'XPCOM')
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2015-07-13 23:09:11 +03:00
|
|
|
'idl-parser/xpidl',
|
2013-09-27 03:05:10 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += [
|
2013-02-26 01:20:02 +04:00
|
|
|
'string',
|
|
|
|
'glue',
|
|
|
|
'base',
|
|
|
|
'ds',
|
|
|
|
'io',
|
|
|
|
'components',
|
|
|
|
'threads',
|
|
|
|
'reflect',
|
|
|
|
'system',
|
|
|
|
'../chrome',
|
|
|
|
'build',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['MOZ_DEBUG']:
|
|
|
|
DIRS += ['windbgdlg']
|
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += [
|
2017-10-23 22:37:25 +03:00
|
|
|
'rust/gtest',
|
2013-02-26 01:20:02 +04:00
|
|
|
'tests',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Can't build internal xptcall tests that use symbols which are not exported.
|
2014-07-29 03:55:55 +04:00
|
|
|
#TEST_DIRS += [
|
2013-02-26 01:20:02 +04:00
|
|
|
# 'reflect/xptcall/tests,
|
|
|
|
#]
|
|
|
|
|
2013-10-24 01:43:32 +04:00
|
|
|
CONFIGURE_DEFINE_FILES += [
|
|
|
|
'xpcom-config.h',
|
|
|
|
'xpcom-private.h',
|
|
|
|
]
|
2016-03-01 11:17:29 +03:00
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'!xpcom-config.h',
|
|
|
|
]
|