2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +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/.
|
|
|
|
|
|
|
|
DIRS += [
|
2019-08-15 01:48:52 +03:00
|
|
|
'app',
|
2013-02-26 00:47:22 +04:00
|
|
|
'chromium',
|
|
|
|
'glue',
|
|
|
|
'ipdl',
|
|
|
|
'testshell',
|
|
|
|
]
|
|
|
|
|
2016-06-03 21:29:21 +03:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
DIRS += ['mscom']
|
|
|
|
|
2019-08-15 01:48:52 +03:00
|
|
|
TEST_DIRS += [
|
|
|
|
'gtest',
|
|
|
|
]
|
2017-01-25 14:17:10 +03:00
|
|
|
|
2017-04-18 10:56:09 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "IPC")
|