mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
6d65226133
--HG-- rename : dom/tests/mochitest/fetch/worker_test_fetch_basic.js => dom/tests/mochitest/fetch/test_fetch_basic.js rename : dom/tests/mochitest/fetch/worker_test_fetch_basic_http.js => dom/tests/mochitest/fetch/test_fetch_basic_http.js rename : dom/tests/mochitest/fetch/worker_test_fetch_cors.js => dom/tests/mochitest/fetch/test_fetch_cors.js rename : dom/workers/test/fetch/test_request.html => dom/tests/mochitest/fetch/test_request.html rename : dom/workers/test/fetch/worker_test_request.js => dom/tests/mochitest/fetch/test_request.js rename : dom/workers/test/fetch/test_response.html => dom/tests/mochitest/fetch/test_response.html rename : dom/workers/test/fetch/worker_test_response.js => dom/tests/mochitest/fetch/test_response.js extra : rebase_source : d889a24b81681948f67604bacd95f05fac96ef57
122 lines
2.7 KiB
Python
122 lines
2.7 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
# Public stuff.
|
|
EXPORTS.mozilla.dom += [
|
|
'ServiceWorkerCommon.h',
|
|
'ServiceWorkerContainer.h',
|
|
'ServiceWorkerEvents.h',
|
|
'ServiceWorkerRegistrar.h',
|
|
'ServiceWorkerRegistration.h',
|
|
'WorkerPrivate.h',
|
|
'WorkerRunnable.h',
|
|
'WorkerScope.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom.workers += [
|
|
'ServiceWorkerManager.h',
|
|
'WorkerDebuggerManager.h',
|
|
'Workers.h',
|
|
]
|
|
|
|
# Stuff needed for the bindings, not really public though.
|
|
EXPORTS.mozilla.dom.workers.bindings += [
|
|
'DataStore.h',
|
|
'DataStoreCursor.h',
|
|
'FileReaderSync.h',
|
|
'Location.h',
|
|
'MessagePort.h',
|
|
'Navigator.h',
|
|
'Performance.h',
|
|
'ServiceWorker.h',
|
|
'ServiceWorkerClient.h',
|
|
'ServiceWorkerClients.h',
|
|
'ServiceWorkerWindowClient.h',
|
|
'SharedWorker.h',
|
|
'URL.h',
|
|
'WorkerFeature.h',
|
|
'XMLHttpRequest.h',
|
|
'XMLHttpRequestUpload.h',
|
|
]
|
|
|
|
XPIDL_MODULE = 'dom_workers'
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsIWorkerDebugger.idl',
|
|
'nsIWorkerDebuggerManager.idl',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'ChromeWorkerScope.cpp',
|
|
'DataStore.cpp',
|
|
'DataStoreCursor.cpp',
|
|
'FileReaderSync.cpp',
|
|
'Location.cpp',
|
|
'MessagePort.cpp',
|
|
'Navigator.cpp',
|
|
'Performance.cpp',
|
|
'Principal.cpp',
|
|
'RegisterBindings.cpp',
|
|
'RuntimeService.cpp',
|
|
'ScriptLoader.cpp',
|
|
'ServiceWorker.cpp',
|
|
'ServiceWorkerClient.cpp',
|
|
'ServiceWorkerClients.cpp',
|
|
'ServiceWorkerContainer.cpp',
|
|
'ServiceWorkerEvents.cpp',
|
|
'ServiceWorkerManager.cpp',
|
|
'ServiceWorkerRegistrar.cpp',
|
|
'ServiceWorkerRegistration.cpp',
|
|
'ServiceWorkerWindowClient.cpp',
|
|
'SharedWorker.cpp',
|
|
'URL.cpp',
|
|
'WorkerDebuggerManager.cpp',
|
|
'WorkerPrivate.cpp',
|
|
'WorkerRunnable.cpp',
|
|
'WorkerScope.cpp',
|
|
'WorkerThread.cpp',
|
|
'XMLHttpRequest.cpp',
|
|
'XMLHttpRequestUpload.cpp',
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'ServiceWorkerRegistrarTypes.ipdlh',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
'../system',
|
|
'/dom/base',
|
|
'/xpcom/build',
|
|
'/xpcom/threads',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
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']
|
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
|
|
|
|
TEST_DIRS += ['test/gtest']
|