2017-11-08 03:19:09 +03:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
|
|
|
if CONFIG['COMPILE_ENVIRONMENT']:
|
|
|
|
DIRS += [
|
|
|
|
'/js/src',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
TEST_DIRS += [
|
|
|
|
'/js/src/tests',
|
|
|
|
]
|
|
|
|
|
2017-12-21 04:11:13 +03:00
|
|
|
if CONFIG['JS_STANDALONE'] and CONFIG['OS_ARCH'] != 'WINNT':
|
|
|
|
DIRS += [
|
|
|
|
'/build/unix',
|
|
|
|
]
|
|
|
|
|
2017-11-08 03:19:09 +03:00
|
|
|
DIRS += [
|
|
|
|
'/config/external/fdlibm',
|
|
|
|
'/config/external/nspr',
|
|
|
|
'/config/external/zlib',
|
|
|
|
'/memory',
|
2020-12-02 02:52:03 +03:00
|
|
|
'/mfbt',
|
2017-11-08 03:19:09 +03:00
|
|
|
'/mozglue',
|
|
|
|
]
|
|
|
|
|
2020-05-30 00:29:52 +03:00
|
|
|
if CONFIG['JS_HAS_INTL_API']:
|
2017-11-08 03:19:09 +03:00
|
|
|
DIRS += [
|
|
|
|
'/config/external/icu',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['COMPILE_ENVIRONMENT'] and CONFIG['BUILD_CTYPES']:
|
|
|
|
DIRS += [
|
|
|
|
'/config/external/ffi',
|
|
|
|
]
|
|
|
|
|
2018-01-17 19:05:04 +03:00
|
|
|
if CONFIG['JS_STANDALONE'] and CONFIG['FUZZING']:
|
|
|
|
DIRS += [
|
|
|
|
'/tools/fuzzing/',
|
|
|
|
]
|
|
|
|
|