2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:20 +00: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-07-28 13:33:46 +00:00
|
|
|
EXPORTS.mozilla.dom += [
|
2015-07-28 13:33:46 +00:00
|
|
|
'Permissions.h',
|
2015-07-28 13:33:46 +00:00
|
|
|
'PermissionStatus.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2015-08-22 02:53:29 +00:00
|
|
|
'PermissionObserver.cpp',
|
2015-07-28 13:33:46 +00:00
|
|
|
'Permissions.cpp',
|
2015-07-28 13:33:46 +00:00
|
|
|
'PermissionStatus.cpp',
|
2015-08-22 02:53:29 +00:00
|
|
|
'PermissionUtils.cpp',
|
2015-07-28 13:33:46 +00:00
|
|
|
]
|
|
|
|
|
2013-06-10 15:19:28 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'PermissionPromptService.js',
|
|
|
|
'PermissionPromptService.manifest',
|
|
|
|
'PermissionSettings.js',
|
|
|
|
'PermissionSettings.manifest',
|
|
|
|
]
|
2013-06-10 16:08:47 +00:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'PermissionSettings.jsm',
|
|
|
|
]
|
2014-07-26 06:17:24 +00:00
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|
|
|
|
|
|
|
|
if CONFIG['MOZ_TIME_MANAGER']:
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest-time.ini']
|
2015-07-28 13:33:46 +00:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
2015-09-23 04:39:03 +00:00
|
|
|
|
2016-03-02 21:09:48 +00:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|