2018-11-20 02:18:32 +03:00
|
|
|
# -*- Mode: python; 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/.
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
|
|
"RemoteWorkerChild.h",
|
|
|
|
"RemoteWorkerController.h",
|
2019-08-15 20:26:49 +03:00
|
|
|
"RemoteWorkerControllerChild.h",
|
|
|
|
"RemoteWorkerControllerParent.h",
|
2020-06-26 21:13:46 +03:00
|
|
|
"RemoteWorkerManager.h",
|
2018-11-20 02:18:32 +03:00
|
|
|
"RemoteWorkerParent.h",
|
|
|
|
"RemoteWorkerService.h",
|
|
|
|
"RemoteWorkerServiceChild.h",
|
|
|
|
"RemoteWorkerServiceParent.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"RemoteWorkerChild.cpp",
|
|
|
|
"RemoteWorkerController.cpp",
|
2019-08-15 20:26:49 +03:00
|
|
|
"RemoteWorkerControllerChild.cpp",
|
|
|
|
"RemoteWorkerControllerParent.cpp",
|
2018-11-20 02:18:32 +03:00
|
|
|
"RemoteWorkerManager.cpp",
|
|
|
|
"RemoteWorkerParent.cpp",
|
|
|
|
"RemoteWorkerService.cpp",
|
|
|
|
"RemoteWorkerServiceChild.cpp",
|
|
|
|
"RemoteWorkerServiceParent.cpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
2019-08-15 20:27:28 +03:00
|
|
|
"/dom/serviceworkers",
|
2018-11-20 02:18:32 +03:00
|
|
|
"/xpcom/build",
|
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
"PRemoteWorker.ipdl",
|
2019-08-15 20:26:49 +03:00
|
|
|
"PRemoteWorkerController.ipdl",
|
2018-11-20 02:18:32 +03:00
|
|
|
"PRemoteWorkerService.ipdl",
|
|
|
|
"RemoteWorkerTypes.ipdlh",
|
|
|
|
]
|
|
|
|
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
|
|
|
FINAL_LIBRARY = "xul"
|