moz.build (984B)
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 with Files("**"): 8 BUG_COMPONENT = ("Core", "Networking: WebTransport") 9 10 XPIDL_SOURCES += [ 11 "nsIWebTransport.idl", 12 "nsIWebTransportEventService.idl", 13 "nsIWebTransportStream.idl", 14 ] 15 16 XPIDL_MODULE = "necko_webtransport" 17 18 EXPORTS.mozilla.net += [ 19 "WebTransportEventService.h", 20 "WebTransportHash.h", 21 "WebTransportSessionProxy.h", 22 "WebTransportStreamProxy.h", 23 ] 24 25 UNIFIED_SOURCES += [ 26 "WebTransportEventService.cpp", 27 "WebTransportHash.cpp", 28 "WebTransportSessionProxy.cpp", 29 "WebTransportStreamProxy.cpp", 30 ] 31 32 FINAL_LIBRARY = "xul" 33 34 LOCAL_INCLUDES += [ 35 "/netwerk/base", 36 "/netwerk/protocol/http", 37 ] 38 39 include("/ipc/chromium/chromium-config.mozbuild")