Bug 1733593 [wpt PR 31046] - Add a wpt for interaction id., a=testonly
[gecko.git] / netwerk / socket / moz.build
blobe97662291a4a64e3e681f903ed9553ce45552ddd
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 DIRS += [
8     "neqo_glue",
11 XPIDL_SOURCES += [
12     "nsISocketProvider.idl",
13     "nsISocketProviderService.idl",
14     "nsISOCKSSocketInfo.idl",
15     "nsISSLSocketControl.idl",
16     "nsITransportSecurityInfo.idl",
19 XPIDL_MODULE = "necko_socket"
21 LOCAL_INCLUDES += [
22     "/netwerk/base",
25 include("/ipc/chromium/chromium-config.mozbuild")
27 EXPORTS += [
28     "nsSocketProviderService.h",
31 UNIFIED_SOURCES += [
32     "nsSocketProviderService.cpp",
33     "nsSOCKSIOLayer.cpp",
34     "nsSOCKSSocketProvider.cpp",
35     "nsUDPSocketProvider.cpp",
38 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
39     XPIDL_SOURCES += [
40         "nsINamedPipeService.idl",
41     ]
42     EXPORTS += [
43         "nsNamedPipeService.h",
44     ]
45     UNIFIED_SOURCES += ["nsNamedPipeIOLayer.cpp", "nsNamedPipeService.cpp"]
47 FINAL_LIBRARY = "xul"
49 CONFIGURE_SUBST_FILES += ["neqo/extra-bindgen-flags"]
51 REQUIRES_UNIFIED_BUILD = True