mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f1427ebbb7
This patch renames |SocketConsumerBase| to |DataSocket|, and for the I/O classes |SocketConsumerIO| to |DataSocketIO|. |DataSocketIO| also contains send and receive functionality from |SocketBaseIO|. |DataSocket| is a virtual base class that represents a socket that transfers data, without a particular constraints to what the data represents. |DataSocketIO| is the corresponding helper class on the I/O thread.
30 lines
754 B
Python
30 lines
754 B
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
EXPORTS.mozilla.ipc += [
|
|
'ConnectionOrientedSocket.h',
|
|
'DataSocket.h',
|
|
'ListenSocket.h',
|
|
'SocketBase.h',
|
|
'StreamSocket.h',
|
|
'UnixSocketConnector.h'
|
|
]
|
|
|
|
SOURCES += [
|
|
'ConnectionOrientedSocket.cpp',
|
|
'DataSocket.cpp',
|
|
'ListenSocket.cpp',
|
|
'SocketBase.cpp',
|
|
'StreamSocket.cpp',
|
|
'UnixSocketConnector.cpp'
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|