2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-06-08 15:46:50 +03: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/.
|
|
|
|
|
2017-02-06 17:45:55 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM")
|
|
|
|
|
2016-06-08 15:46:50 +03:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIConsoleAPIStorage.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'dom'
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'nsIConsoleReportCollector.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'ConsoleReportCollector.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
'Console.h',
|
2018-01-04 21:19:43 +03:00
|
|
|
'ConsoleInstance.h',
|
2018-01-11 00:06:37 +03:00
|
|
|
'ConsoleUtils.h',
|
2016-06-08 15:46:50 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'Console.cpp',
|
2018-01-04 21:19:43 +03:00
|
|
|
'ConsoleInstance.cpp',
|
2016-06-08 15:46:50 +03:00
|
|
|
'ConsoleReportCollector.cpp',
|
2018-01-11 00:06:37 +03:00
|
|
|
'ConsoleUtils.cpp',
|
2016-06-08 15:46:50 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'ConsoleAPI.manifest',
|
|
|
|
'ConsoleAPIStorage.js',
|
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/docshell/base',
|
|
|
|
'/dom/base',
|
|
|
|
'/js/xpconnect/src',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [ 'tests/mochitest.ini' ]
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += [ 'tests/chrome.ini' ]
|
2017-12-20 16:35:34 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2016-06-08 15:46:50 +03:00
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|