mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
40b4794120
This is a high-level async pipe which can be cheaply transferred between processes and uses a shared memory ring buffer as its implementation. This can be used to efficiently stream non-message oriented data between processes and is not bound to any particular protocol or thread. Differential Revision: https://phabricator.services.mozilla.com/D135161
18 lines
479 B
Python
18 lines
479 B
Python
# -*- Mode: python; 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/.
|
|
|
|
Library("ipctest")
|
|
|
|
SOURCES += [
|
|
"TestDataPipe.cpp",
|
|
"TestLogging.cpp",
|
|
"TestSharedMemory.cpp",
|
|
]
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
FINAL_LIBRARY = "xul-gtest"
|