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