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/.
|
|
|
|
|
2015-03-04 04:03:19 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Testing', 'Reftest')
|
2020-03-24 17:55:28 +03:00
|
|
|
SCHEDULES.exclusive = ['reftest', 'crashtest']
|
2015-03-04 04:03:19 +03:00
|
|
|
|
2014-12-16 09:07:01 +03:00
|
|
|
XPI_NAME = 'reftest'
|
2016-03-09 22:38:13 +03:00
|
|
|
USE_EXTENSION_MANIFEST = True
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
2018-09-05 21:14:04 +03:00
|
|
|
FINAL_TARGET_FILES += [
|
|
|
|
'api.js',
|
|
|
|
'manifest.json',
|
|
|
|
'schema.json',
|
|
|
|
]
|
2016-04-18 17:36:07 +03:00
|
|
|
|
|
|
|
TEST_HARNESS_FILES.reftest += [
|
|
|
|
'/build/mobile/remoteautomation.py',
|
|
|
|
'/build/pgo/server-locations.txt',
|
|
|
|
'/testing/mochitest/server.js',
|
2016-07-13 17:57:22 +03:00
|
|
|
'mach_test_package_commands.py',
|
2016-04-18 17:36:07 +03:00
|
|
|
'output.py',
|
|
|
|
'reftestcommandline.py',
|
|
|
|
'remotereftest.py',
|
|
|
|
'runreftest.py',
|
|
|
|
]
|
2016-12-15 15:59:16 +03:00
|
|
|
|
|
|
|
TEST_HARNESS_FILES.reftest.chrome += [
|
|
|
|
'chrome/binding.xml',
|
2020-02-16 00:27:06 +03:00
|
|
|
'chrome/userContent-import.css',
|
2016-12-15 15:59:16 +03:00
|
|
|
'chrome/userContent.css',
|
|
|
|
]
|
2017-09-23 18:07:03 +03:00
|
|
|
|
|
|
|
TEST_HARNESS_FILES.reftest.manifest += [
|
|
|
|
'reftest/__init__.py'
|
|
|
|
]
|