gecko-dev/testing/specialpowers/moz.build
Kris Maglione 3c304b4239 Bug 1561150: Support test assertions in SpecialPowers.spawn sandboxes. r=nika
Differential Revision: https://phabricator.services.mozilla.com/D35747

--HG--
extra : rebase_source : 62aa469b15c2ebfb0de299c163b26ed68361ee1e
extra : source : 0b3e2164f1283b639782b41b7fd640986d3feca5
2019-06-24 19:25:33 -07:00

32 lines
894 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/.
XPI_NAME = 'specialpowers'
USE_EXTENSION_MANIFEST = True
FINAL_TARGET_FILES += [
'api.js',
'manifest.json',
'schema.json',
]
FINAL_TARGET_FILES.content += [
'../modules/Assert.jsm',
'content/MockColorPicker.jsm',
'content/MockFilePicker.jsm',
'content/MockPermissionPrompt.jsm',
'content/SpecialPowersAPI.jsm',
'content/SpecialPowersAPIParent.jsm',
'content/SpecialPowersChild.jsm',
'content/SpecialPowersParent.jsm',
'content/SpecialPowersSandbox.jsm',
'content/WrapPrivileged.jsm',
]
with Files("**"):
BUG_COMPONENT = ("Testing", "Mochitest")