2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2016-06-09 13:42:21 +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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2016-06-09 20:04:42 +03:00
|
|
|
'Performance.h',
|
2016-06-09 13:42:21 +03:00
|
|
|
'PerformanceEntry.h',
|
|
|
|
'PerformanceMark.h',
|
|
|
|
'PerformanceMeasure.h',
|
2016-06-09 13:44:54 +03:00
|
|
|
'PerformanceNavigation.h',
|
2016-06-09 13:42:21 +03:00
|
|
|
'PerformanceObserver.h',
|
|
|
|
'PerformanceObserverEntryList.h',
|
|
|
|
'PerformanceResourceTiming.h',
|
2016-06-09 13:43:56 +03:00
|
|
|
'PerformanceTiming.h',
|
2016-06-09 13:42:21 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2016-06-09 20:04:42 +03:00
|
|
|
'Performance.cpp',
|
2016-06-09 13:42:21 +03:00
|
|
|
'PerformanceEntry.cpp',
|
2016-06-09 20:04:42 +03:00
|
|
|
'PerformanceMainThread.cpp',
|
2016-06-09 13:42:21 +03:00
|
|
|
'PerformanceMark.cpp',
|
|
|
|
'PerformanceMeasure.cpp',
|
2016-06-09 13:44:54 +03:00
|
|
|
'PerformanceNavigation.cpp',
|
2016-06-09 13:42:21 +03:00
|
|
|
'PerformanceObserver.cpp',
|
|
|
|
'PerformanceObserverEntryList.cpp',
|
|
|
|
'PerformanceResourceTiming.cpp',
|
2016-06-09 13:43:56 +03:00
|
|
|
'PerformanceTiming.cpp',
|
2016-06-09 20:04:42 +03:00
|
|
|
'PerformanceWorker.cpp',
|
2016-06-09 13:42:21 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'/dom/workers',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [ 'tests/mochitest.ini' ]
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|