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