mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-06 00:10:25 +00:00
96a9c22d8b
The browser JUnit 3 test suite has never run in automation, and no test has been added or updated since 2016. Half of the existing "tests" are broken on my local device. This allows to clean several Makefile's related to this undeveloped testing approach, which won't be pursued post-Gradle. MozReview-Commit-ID: 1EbGMLntuyR --HG-- extra : rebase_source : b4751f96851a8df61c0333a3e0ade3805b280dfe
15 lines
405 B
Python
15 lines
405 B
Python
# 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/.
|
|
|
|
include('/toolkit/toolkit.mozbuild')
|
|
|
|
if CONFIG['MOZ_EXTENSIONS']:
|
|
DIRS += ['/extensions']
|
|
|
|
DIRS += [
|
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
|
'/mobile/android',
|
|
]
|