2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
# Public stuff.
|
2013-11-05 18:16:24 +04:00
|
|
|
EXPORTS.mozilla.dom += [
|
2014-08-19 17:56:00 +04:00
|
|
|
'ServiceWorkerCommon.h',
|
2013-11-20 03:14:07 +04:00
|
|
|
'ServiceWorkerContainer.h',
|
2014-11-06 18:57:57 +03:00
|
|
|
'ServiceWorkerEvents.h',
|
2015-02-11 14:53:00 +03:00
|
|
|
'ServiceWorkerRegistrar.h',
|
2014-08-19 17:56:00 +04:00
|
|
|
'ServiceWorkerRegistration.h',
|
2013-11-05 18:16:24 +04:00
|
|
|
'WorkerPrivate.h',
|
2013-10-23 17:16:49 +04:00
|
|
|
'WorkerRunnable.h',
|
2013-11-05 18:16:26 +04:00
|
|
|
'WorkerScope.h',
|
2013-11-05 18:16:24 +04:00
|
|
|
]
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.dom.workers += [
|
2013-11-20 03:15:02 +04:00
|
|
|
'ServiceWorkerManager.h',
|
2015-04-11 02:44:10 +03:00
|
|
|
'ServiceWorkerPeriodicUpdater.h',
|
2014-10-27 20:00:05 +03:00
|
|
|
'WorkerDebuggerManager.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'Workers.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
# Stuff needed for the bindings, not really public though.
|
|
|
|
EXPORTS.mozilla.dom.workers.bindings += [
|
2014-02-24 17:57:15 +04:00
|
|
|
'DataStore.h',
|
|
|
|
'DataStoreCursor.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'FileReaderSync.h',
|
2013-07-24 11:41:55 +04:00
|
|
|
'Location.h',
|
2013-06-05 18:04:23 +04:00
|
|
|
'MessagePort.h',
|
2013-07-24 11:38:23 +04:00
|
|
|
'Navigator.h',
|
2014-08-30 03:50:06 +04:00
|
|
|
'Performance.h',
|
2013-11-20 03:14:07 +04:00
|
|
|
'ServiceWorker.h',
|
2014-10-27 14:03:00 +03:00
|
|
|
'ServiceWorkerClient.h',
|
|
|
|
'ServiceWorkerClients.h',
|
2015-03-06 16:04:49 +03:00
|
|
|
'ServiceWorkerWindowClient.h',
|
2013-06-05 18:04:23 +04:00
|
|
|
'SharedWorker.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'URL.h',
|
|
|
|
'WorkerFeature.h',
|
|
|
|
'XMLHttpRequest.h',
|
|
|
|
'XMLHttpRequestUpload.h',
|
|
|
|
]
|
|
|
|
|
2014-10-27 20:00:05 +03:00
|
|
|
XPIDL_MODULE = 'dom_workers'
|
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIWorkerDebugger.idl',
|
|
|
|
'nsIWorkerDebuggerManager.idl',
|
|
|
|
]
|
|
|
|
|
2014-09-25 18:12:06 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'ChromeWorkerScope.cpp',
|
2014-02-24 17:57:15 +04:00
|
|
|
'DataStore.cpp',
|
|
|
|
'DataStoreCursor.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'FileReaderSync.cpp',
|
|
|
|
'Location.cpp',
|
2013-06-05 18:04:23 +04:00
|
|
|
'MessagePort.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'Navigator.cpp',
|
2014-08-30 03:50:06 +04:00
|
|
|
'Performance.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'Principal.cpp',
|
2013-11-05 18:16:26 +04:00
|
|
|
'RegisterBindings.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'RuntimeService.cpp',
|
|
|
|
'ScriptLoader.cpp',
|
2013-11-20 03:14:07 +04:00
|
|
|
'ServiceWorker.cpp',
|
2014-10-27 14:03:00 +03:00
|
|
|
'ServiceWorkerClient.cpp',
|
|
|
|
'ServiceWorkerClients.cpp',
|
2013-11-20 03:14:07 +04:00
|
|
|
'ServiceWorkerContainer.cpp',
|
2014-05-14 01:49:36 +04:00
|
|
|
'ServiceWorkerEvents.cpp',
|
2013-11-20 03:15:02 +04:00
|
|
|
'ServiceWorkerManager.cpp',
|
2015-04-11 02:44:10 +03:00
|
|
|
'ServiceWorkerPeriodicUpdater.cpp',
|
2015-02-11 14:53:00 +03:00
|
|
|
'ServiceWorkerRegistrar.cpp',
|
2014-08-19 17:56:00 +04:00
|
|
|
'ServiceWorkerRegistration.cpp',
|
2015-03-18 19:46:38 +03:00
|
|
|
'ServiceWorkerScriptCache.cpp',
|
2015-03-06 16:04:49 +03:00
|
|
|
'ServiceWorkerWindowClient.cpp',
|
2013-06-05 18:04:23 +04:00
|
|
|
'SharedWorker.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'URL.cpp',
|
2014-10-27 20:00:05 +03:00
|
|
|
'WorkerDebuggerManager.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'WorkerPrivate.cpp',
|
2013-10-23 17:16:49 +04:00
|
|
|
'WorkerRunnable.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'WorkerScope.cpp',
|
2014-11-15 05:47:30 +03:00
|
|
|
'WorkerThread.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
'XMLHttpRequest.cpp',
|
|
|
|
'XMLHttpRequestUpload.cpp',
|
|
|
|
]
|
|
|
|
|
2015-02-11 14:53:00 +03:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'ServiceWorkerRegistrarTypes.ipdlh',
|
|
|
|
]
|
|
|
|
|
2013-08-22 10:55:59 +04:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-09-13 20:25:21 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../system',
|
2014-10-25 21:25:22 +04:00
|
|
|
'/dom/base',
|
2013-09-13 20:25:21 +04:00
|
|
|
'/xpcom/build',
|
2013-10-23 17:16:49 +04:00
|
|
|
'/xpcom/threads',
|
2013-11-05 18:16:26 +04:00
|
|
|
]
|
2013-11-19 06:47:14 +04:00
|
|
|
|
2013-12-03 23:31:30 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2014-07-26 10:17:24 +04:00
|
|
|
|
|
|
|
TEST_DIRS += [
|
|
|
|
'test/extensions/bootstrap',
|
|
|
|
'test/extensions/traditional',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
|
|
'test/mochitest.ini',
|
|
|
|
'test/serviceworkers/mochitest.ini',
|
|
|
|
]
|
|
|
|
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini']
|
2015-02-11 14:53:00 +03:00
|
|
|
|
2014-12-10 22:41:09 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
|
|
|
|
|
2015-02-11 14:53:00 +03:00
|
|
|
TEST_DIRS += ['test/gtest']
|