mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
3d50a9eb7e
--HG-- extra : commitid : 5deKex3Nhp extra : rebase_source : 9c31f41230bb46127dead36ccad4449cd35ce1b0 extra : histedit_source : 2646ebbe46d96f8e50db75247a7672e81d57a74c
23 lines
677 B
Python
23 lines
677 B
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'Extension.jsm',
|
|
'ExtensionContent.jsm',
|
|
'ExtensionManagement.jsm',
|
|
'ExtensionStorage.jsm',
|
|
'ExtensionUtils.jsm',
|
|
'MessageChannel.jsm',
|
|
'Schemas.jsm',
|
|
]
|
|
|
|
DIRS += ['schemas']
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest/mochitest.ini']
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini']
|