moz.build (1024B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Testing", "Reftest") 9 SCHEDULES.exclusive = ["reftest", "crashtest"] 10 11 XPI_NAME = "reftest" 12 USE_EXTENSION_MANIFEST = True 13 JAR_MANIFESTS += ["jar.mn"] 14 FINAL_TARGET_FILES += [ 15 "api.js", 16 "manifest.json", 17 "schema.json", 18 ] 19 20 TEST_HARNESS_FILES.reftest += [ 21 "/build/pgo/server-locations.txt", 22 "/testing/mochitest/mochitestListingsUtils.js", 23 "/testing/mochitest/server.js", 24 "mach_test_package_commands.py", 25 "output.py", 26 "reftestcommandline.py", 27 "remotereftest.py", 28 "runreftest.py", 29 ] 30 31 TEST_HARNESS_FILES.reftest.chrome += [ 32 "chrome/userContent-import.css", 33 "chrome/userContent.css", 34 ] 35 36 TEST_HARNESS_FILES.reftest.manifest += ["reftest/__init__.py"]