gecko-dev/dom/clients/manager/moz.build
Ryan VanderMeulen 5012cc0f5d Backed out 6 changesets (bug 1584007) for causing bug 1625227.
Backed out changeset c626a363823e (bug 1584007)
Backed out changeset 0d130a64b0f5 (bug 1584007)
Backed out changeset 8ca43f80bdd2 (bug 1584007)
Backed out changeset 00eda7b39a13 (bug 1584007)
Backed out changeset ac2765b4b4ec (bug 1584007)
Backed out changeset 24deb3d46783 (bug 1584007)

--HG--
extra : amend_source : 9431aa82b4a472f0c60dcf1368817fe7c658bcf5
2020-03-30 14:53:46 -04:00

72 lines
1.6 KiB
Python

# -*- 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 += [
'ClientChannelHelper.h',
'ClientHandle.h',
'ClientInfo.h',
'ClientIPCUtils.h',
'ClientManager.h',
'ClientManagerActors.h',
'ClientManagerService.h',
'ClientOpPromise.h',
'ClientSource.h',
'ClientState.h',
'ClientThing.h',
]
UNIFIED_SOURCES += [
'ClientChannelHelper.cpp',
'ClientHandle.cpp',
'ClientHandleChild.cpp',
'ClientHandleOpChild.cpp',
'ClientHandleOpParent.cpp',
'ClientHandleParent.cpp',
'ClientInfo.cpp',
'ClientManager.cpp',
'ClientManagerActors.cpp',
'ClientManagerChild.cpp',
'ClientManagerOpChild.cpp',
'ClientManagerOpParent.cpp',
'ClientManagerParent.cpp',
'ClientManagerService.cpp',
'ClientNavigateOpChild.cpp',
'ClientNavigateOpParent.cpp',
'ClientOpenWindowUtils.cpp',
'ClientPrincipalUtils.cpp',
'ClientSource.cpp',
'ClientSourceChild.cpp',
'ClientSourceOpChild.cpp',
'ClientSourceOpParent.cpp',
'ClientSourceParent.cpp',
'ClientState.cpp',
'ClientValidation.cpp',
]
IPDL_SOURCES += [
'ClientIPCTypes.ipdlh',
'PClientHandle.ipdl',
'PClientHandleOp.ipdl',
'PClientManager.ipdl',
'PClientManagerOp.ipdl',
'PClientNavigateOp.ipdl',
'PClientSource.ipdl',
'PClientSourceOp.ipdl',
]
include('/ipc/chromium/chromium-config.mozbuild')
FINAL_LIBRARY = 'xul'
MOCHITEST_MANIFESTS += [
]
BROWSER_CHROME_MANIFESTS += [
]
XPCSHELL_TESTS_MANIFESTS += [
]