mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
76 lines
1.8 KiB
Makefile
76 lines
1.8 KiB
Makefile
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/crashreporter
|
|
|
|
LIBRARY_NAME = mozipc_s
|
|
FORCE_STATIC_LIB = 1
|
|
LIBXUL_LIBRARY = 1
|
|
EXPORT_LIBRARY = 1
|
|
|
|
CPPSRCS += \
|
|
AsyncChannel.cpp \
|
|
BrowserProcessSubThread.cpp \
|
|
FileDescriptor.cpp \
|
|
FileDescriptorUtils.cpp \
|
|
GeckoChildProcessHost.cpp \
|
|
InputStreamUtils.cpp \
|
|
MessagePump.cpp \
|
|
ProcessChild.cpp \
|
|
ProtocolUtils.cpp \
|
|
RPCChannel.cpp \
|
|
ScopedXREEmbed.cpp \
|
|
SharedMemory.cpp \
|
|
Shmem.cpp \
|
|
StringUtil.cpp \
|
|
SyncChannel.cpp \
|
|
URIUtils.cpp \
|
|
$(NULL)
|
|
|
|
ifeq ($(OS_ARCH),WINNT) #{
|
|
CPPSRCS += \
|
|
SharedMemory_windows.cpp \
|
|
Transport_win.cpp \
|
|
WindowsMessageLoop.cpp \
|
|
CrossProcessMutex_windows.cpp \
|
|
$(NULL)
|
|
else
|
|
# POSIX
|
|
CPPSRCS += \
|
|
SharedMemory_posix.cpp \
|
|
Transport_posix.cpp \
|
|
CrossProcessMutex_unimplemented.cpp \
|
|
$(NULL)
|
|
endif #}
|
|
|
|
ifeq ($(OS_TARGET),Android)
|
|
CPPSRCS += SharedMemoryBasic_android.cpp
|
|
endif #}
|
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
CPPSRCS += ProcessUtils_linux.cpp
|
|
else
|
|
CPPSRCS += ProcessUtils_none.cpp
|
|
endif
|
|
|
|
include $(topsrcdir)/ipc/app/defs.mk
|
|
DEFINES += -DMOZ_CHILD_PROCESS_NAME=\"$(MOZ_CHILD_PROCESS_NAME)\"
|
|
DEFINES += -DMOZ_CHILD_PROCESS_BUNDLE=\"$(MOZ_CHILD_PROCESS_BUNDLE)\"
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Since we get the value of MOZ_CHILD_PROCESS_NAME from another file make sure
|
|
# to rebuild if that file changes.
|
|
$(CPPSRCS:%.cpp=%.$(OBJ_SUFFIX)): $(topsrcdir)/ipc/app/defs.mk
|