2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2017-02-02 14:33:47 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Networking")
|
|
|
|
|
2014-08-27 21:13:39 +04:00
|
|
|
DIRS += ["interfaces"]
|
2014-07-26 10:17:24 +04:00
|
|
|
|
2015-09-22 15:45:00 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ["tests/chrome.ini"]
|
2014-07-26 10:17:24 +04:00
|
|
|
MOCHITEST_MANIFESTS += ["tests/mochitest.ini"]
|
2014-08-27 21:13:39 +04:00
|
|
|
|
|
|
|
EXPORTS.mozilla.dom += [
|
2015-03-25 17:36:24 +03:00
|
|
|
"TCPServerSocket.h",
|
2015-03-25 17:35:59 +03:00
|
|
|
"TCPSocket.h",
|
2014-08-27 21:13:39 +04:00
|
|
|
"UDPSocket.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom.network += [
|
|
|
|
"Connection.h",
|
|
|
|
"Constants.h",
|
|
|
|
"TCPServerSocketChild.h",
|
|
|
|
"TCPServerSocketParent.h",
|
|
|
|
"TCPSocketChild.h",
|
|
|
|
"TCPSocketParent.h",
|
|
|
|
"UDPSocketChild.h",
|
|
|
|
"UDPSocketParent.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
"Connection.cpp",
|
2016-12-16 10:50:23 +03:00
|
|
|
"ConnectionMainThread.cpp",
|
|
|
|
"ConnectionWorker.cpp",
|
2015-03-25 17:36:24 +03:00
|
|
|
"TCPServerSocket.cpp",
|
2014-08-27 21:13:39 +04:00
|
|
|
"TCPServerSocketChild.cpp",
|
|
|
|
"TCPServerSocketParent.cpp",
|
2015-03-25 17:35:59 +03:00
|
|
|
"TCPSocket.cpp",
|
2014-08-27 21:13:39 +04:00
|
|
|
"TCPSocketChild.cpp",
|
|
|
|
"TCPSocketParent.cpp",
|
|
|
|
"UDPSocket.cpp",
|
|
|
|
"UDPSocketChild.cpp",
|
|
|
|
"UDPSocketParent.cpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
IPDL_SOURCES += [
|
|
|
|
"PTCPServerSocket.ipdl",
|
|
|
|
"PTCPSocket.ipdl",
|
|
|
|
"PUDPSocket.ipdl",
|
|
|
|
]
|
|
|
|
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
|
|
|
|
FINAL_LIBRARY = "xul"
|
2016-05-11 10:00:01 +03:00
|
|
|
|
2017-12-08 00:09:15 +03:00
|
|
|
if CONFIG["CC_TYPE"] in ("clang", "gcc"):
|
2016-05-11 10:00:01 +03:00
|
|
|
CXXFLAGS += ["-Wno-error=shadow"]
|