moz.build (1815B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 EXPORTS.mozilla.dom += [ 8 "ClientChannelHelper.h", 9 "ClientHandle.h", 10 "ClientHandleParent.h", 11 "ClientInfo.h", 12 "ClientIPCUtils.h", 13 "ClientManager.h", 14 "ClientManagerActors.h", 15 "ClientManagerService.h", 16 "ClientOpenWindowUtils.h", 17 "ClientOpPromise.h", 18 "ClientSource.h", 19 "ClientState.h", 20 "ClientThing.h", 21 ] 22 23 UNIFIED_SOURCES += [ 24 "ClientChannelHelper.cpp", 25 "ClientHandle.cpp", 26 "ClientHandleChild.cpp", 27 "ClientHandleOpChild.cpp", 28 "ClientHandleOpParent.cpp", 29 "ClientHandleParent.cpp", 30 "ClientInfo.cpp", 31 "ClientManager.cpp", 32 "ClientManagerActors.cpp", 33 "ClientManagerChild.cpp", 34 "ClientManagerOpChild.cpp", 35 "ClientManagerOpParent.cpp", 36 "ClientManagerParent.cpp", 37 "ClientManagerService.cpp", 38 "ClientNavigateOpChild.cpp", 39 "ClientNavigateOpParent.cpp", 40 "ClientOpenWindowUtils.cpp", 41 "ClientPrincipalUtils.cpp", 42 "ClientSource.cpp", 43 "ClientSourceChild.cpp", 44 "ClientSourceOpChild.cpp", 45 "ClientSourceOpParent.cpp", 46 "ClientSourceParent.cpp", 47 "ClientState.cpp", 48 "ClientValidation.cpp", 49 ] 50 51 IPDL_SOURCES += [ 52 "ClientIPCTypes.ipdlh", 53 "PClientHandle.ipdl", 54 "PClientHandleOp.ipdl", 55 "PClientManager.ipdl", 56 "PClientManagerOp.ipdl", 57 "PClientNavigateOp.ipdl", 58 "PClientSource.ipdl", 59 "PClientSourceOp.ipdl", 60 ] 61 62 include("/ipc/chromium/chromium-config.mozbuild") 63 64 FINAL_LIBRARY = "xul" 65 66 MOCHITEST_MANIFESTS += [] 67 68 BROWSER_CHROME_MANIFESTS += [] 69 70 XPCSHELL_TESTS_MANIFESTS += []