Bug 1814798 - pt 2. Add a PHCManager component to control PHC r=glandium,emilio
[gecko.git] / netwerk / protocol / webtransport / moz.build
blobef0f6705abff8f585b7accea80fbebc334820042
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/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "Networking: WebTransport")
10 XPIDL_SOURCES += [
11     "nsIWebTransport.idl",
12     "nsIWebTransportStream.idl",
15 XPIDL_MODULE = "necko_webtransport"
17 EXPORTS.mozilla.net += [
18     "WebTransportSessionProxy.h",
19     "WebTransportStreamProxy.h",
22 UNIFIED_SOURCES += [
23     "WebTransportSessionProxy.cpp",
24     "WebTransportStreamProxy.cpp",
27 FINAL_LIBRARY = "xul"
29 LOCAL_INCLUDES += [
30     "/netwerk/base",
31     "/netwerk/protocol/http",
34 include("/ipc/chromium/chromium-config.mozbuild")