mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 18:47:53 +00:00
b1d0510804
For now, there is no flag to actually allow it, but this is the code-side changes to allow the linker being disabled. Differential Revision: https://phabricator.services.mozilla.com/D54074 --HG-- extra : moz-landing-system : lando
27 lines
689 B
Python
27 lines
689 B
Python
# -*- Mode: python; 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/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Core", "mozglue")
|
|
|
|
if CONFIG['MOZ_LINKER'] or CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
DIRS += ['linker']
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
|
DIRS += ['android']
|
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
|
DIRS += ['dllservices']
|
|
|
|
DIRS += [
|
|
'baseprofiler',
|
|
'build',
|
|
'misc',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT']:
|
|
TEST_DIRS += ['tests']
|