mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
4e35440ec8
--HG-- rename : content/media/webspeech/synth/moz.build => content/media/webspeech/synth/ipc/test/moz.build
100 lines
2.4 KiB
Makefile
100 lines
2.4 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
|
|
|
|
GARBAGE_DIRS += _ipdlheaders
|
|
GARBAGE += ipdl_lextab.py ipdl_yacctab.py $(wildcard *.pyc $(srcdir)/ipdl/*.pyc $(srcdir)/ipdl/cxx/*.pyc)
|
|
|
|
LIBRARY_NAME = mozipdlgen_s
|
|
FORCE_STATIC_LIB = 1
|
|
LIBXUL_LIBRARY = 1
|
|
EXPORT_LIBRARY = 1
|
|
|
|
##-----------------------------------------------------------------------------
|
|
## When you add IPDL files to a source directory, list the directory here.
|
|
##
|
|
IPDLDIRS = \
|
|
uriloader/exthandler \
|
|
content/media/webspeech/synth/ipc \
|
|
dom/devicestorage \
|
|
dom/indexedDB/ipc \
|
|
dom/bluetooth/ipc \
|
|
dom/plugins/ipc \
|
|
dom/ipc \
|
|
dom/mobilemessage/src/ipc \
|
|
dom/src/storage \
|
|
dom/network/src \
|
|
gfx/layers/ipc \
|
|
hal/sandbox \
|
|
ipc/glue \
|
|
ipc/testshell \
|
|
js/ipc \
|
|
layout/ipc \
|
|
netwerk/ipc \
|
|
netwerk/protocol/ftp \
|
|
netwerk/protocol/http \
|
|
netwerk/protocol/wyciwyg \
|
|
netwerk/protocol/websocket \
|
|
netwerk/cookie \
|
|
uriloader/prefetch \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_IPDL_TESTS #{
|
|
IPDLDIRS += ipc/ipdl/test/cxx
|
|
endif #}
|
|
##-----------------------------------------------------------------------------
|
|
|
|
vpath %.ipdl $(topsrcdir)
|
|
vpath %.ipdlh $(topsrcdir)
|
|
|
|
define ADD_IPDLDIR
|
|
include $(topsrcdir)/$(IPDLDIR)/ipdl.mk
|
|
ALL_IPDLSRCS += $$(IPDLSRCS:%=$(IPDLDIR)/%)
|
|
PROTOCOLS += $$(IPDLSRCS)
|
|
endef
|
|
|
|
ALL_IPDLSRCS :=
|
|
PROTOCOLS :=
|
|
|
|
$(foreach IPDLDIR,$(IPDLDIRS),$(eval $(ADD_IPDLDIR)))
|
|
|
|
|
|
CPPSRCS = \
|
|
$(PROTOCOLS:%.ipdl=%Parent.cpp) \
|
|
$(PROTOCOLS:%.ipdl=%Child.cpp) \
|
|
$(PROTOCOLS:%.ipdl=%.cpp) \
|
|
$(PROTOCOLS:%.ipdlh=%.cpp) \
|
|
$(NULL)
|
|
|
|
GARBAGE += $(CPPSRCS)
|
|
|
|
LOCAL_INCLUDES += -I$(DEPTH)/ipc/ipdl/_ipdlheaders
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
# NB: the IPDL compiler manages .ipdl-->.h/.cpp dependencies itself,
|
|
# which is why we don't have explicit .h/.cpp targets here
|
|
export:: $(ALL_IPDLSRCS)
|
|
$(PYTHON) $(topsrcdir)/config/pythonpath.py \
|
|
$(PLY_INCLUDE) \
|
|
$(srcdir)/ipdl.py \
|
|
--outheaders-dir=_ipdlheaders \
|
|
--outcpp-dir=. \
|
|
$(IPDLDIRS:%=-I$(topsrcdir)/%) \
|
|
$^
|
|
|
|
# We #include some things in the dom/plugins/ directory that rely on
|
|
# toolkit libraries.
|
|
CXXFLAGS += $(TK_CFLAGS)
|