Bug 1690340 - Part 5: Remove the menu separators from the developer tools menu. r...
[gecko.git] / netwerk / ipc / moz.build
blobf1642b06fae2f76321fd7d4471eba4776cf08def
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 EXPORTS.mozilla.net += [
8     "ChannelEventQueue.h",
9     "DocumentChannel.h",
10     "DocumentChannelChild.h",
11     "DocumentChannelParent.h",
12     "DocumentLoadListener.h",
13     "InputChannelThrottleQueueChild.h",
14     "InputChannelThrottleQueueParent.h",
15     "NeckoChild.h",
16     "NeckoCommon.h",
17     "NeckoMessageUtils.h",
18     "NeckoParent.h",
19     "NeckoTargetHolder.h",
20     "ParentChannelWrapper.h",
21     "ParentProcessDocumentChannel.h",
22     "ProxyConfigLookup.h",
23     "ProxyConfigLookupChild.h",
24     "ProxyConfigLookupParent.h",
25     "SocketProcessBridgeChild.h",
26     "SocketProcessBridgeParent.h",
27     "SocketProcessChild.h",
28     "SocketProcessHost.h",
29     "SocketProcessImpl.h",
30     "SocketProcessParent.h",
33 UNIFIED_SOURCES += [
34     "ChannelEventQueue.cpp",
35     "DocumentChannel.cpp",
36     "DocumentChannelChild.cpp",
37     "DocumentChannelParent.cpp",
38     "DocumentLoadListener.cpp",
39     "InputChannelThrottleQueueChild.cpp",
40     "InputChannelThrottleQueueParent.cpp",
41     "NeckoChild.cpp",
42     "NeckoParent.cpp",
43     "NeckoTargetHolder.cpp",
44     "ParentChannelWrapper.cpp",
45     "ParentProcessDocumentChannel.cpp",
46     "ProxyConfigLookup.cpp",
47     "ProxyConfigLookupChild.cpp",
48     "ProxyConfigLookupParent.cpp",
49     "SocketProcessBridgeChild.cpp",
50     "SocketProcessBridgeParent.cpp",
51     "SocketProcessChild.cpp",
52     "SocketProcessHost.cpp",
53     "SocketProcessImpl.cpp",
54     "SocketProcessParent.cpp",
57 PREPROCESSED_IPDL_SOURCES += [
58     "PNecko.ipdl",
61 IPDL_SOURCES = [
62     "NeckoChannelParams.ipdlh",
63     "PDataChannel.ipdl",
64     "PDocumentChannel.ipdl",
65     "PFileChannel.ipdl",
66     "PInputChannelThrottleQueue.ipdl",
67     "PProxyConfigLookup.ipdl",
68     "PSimpleChannel.ipdl",
69     "PSocketProcess.ipdl",
70     "PSocketProcessBridge.ipdl",
73 # needed so --disable-webrtc builds work (yes, a bit messy)
74 if not CONFIG["MOZ_WEBRTC"]:
75     IPDL_SOURCES += [
76         "../../dom/media/webrtc/transport/ipc/PStunAddrsRequest.ipdl",
77         "../../dom/media/webrtc/transport/ipc/PWebrtcTCPSocket.ipdl",
78         "../../dom/media/webrtc/transport/ipc/WebrtcProxyConfig.ipdlh",
79     ]
80     EXPORTS.mozilla.net += [
81         "../../dom/media/webrtc/transport/ipc/NrIceStunAddrMessageUtils.h",
82         "../../dom/media/webrtc/transport/ipc/PStunAddrsParams.h",
83     ]
85 include("/ipc/chromium/chromium-config.mozbuild")
87 FINAL_LIBRARY = "xul"
89 LOCAL_INCLUDES += [
90     "/caps",
91     "/dom/base",
92     "/dom/media/webrtc/transport",
93     "/media/webrtc",
94     "/modules/libjar",
95     "/netwerk/base",
96     "/netwerk/protocol/http",
97     "/security/manager/ssl",
98     "/xpcom/threads",
101 # Add libFuzzer configuration directives
102 include("/tools/fuzzing/libfuzzer-config.mozbuild")