2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:17 +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-03-09 13:33:30 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "mozglue")
|
|
|
|
|
2019-11-21 17:57:24 +03:00
|
|
|
if CONFIG['MOZ_LINKER'] or CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
2013-02-26 00:47:17 +04:00
|
|
|
DIRS += ['linker']
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
|
|
DIRS += ['android']
|
|
|
|
|
2019-09-23 23:18:41 +03:00
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
|
|
|
DIRS += ['dllservices']
|
|
|
|
|
2015-06-05 23:03:11 +03:00
|
|
|
DIRS += [
|
2019-06-06 09:17:30 +03:00
|
|
|
'baseprofiler',
|
2015-06-05 23:03:11 +03:00
|
|
|
'build',
|
|
|
|
'misc',
|
|
|
|
]
|
2013-02-26 00:47:17 +04:00
|
|
|
|
2017-10-05 08:50:01 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT']:
|
2015-03-19 12:12:53 +03:00
|
|
|
TEST_DIRS += ['tests']
|