mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
549994ef6c
interfaces for testing the layout engine.
34 lines
690 B
Makefile
34 lines
690 B
Makefile
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Makefile to build LIBTEST
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
MODULE = libtestimpl
|
|
|
|
ifdef MOZ_LIBTEST
|
|
LIBRARY_NAME = libtest
|
|
|
|
CPPSRCS = nsTestEventsApi.cpp \
|
|
nsTestQueryApi.cpp
|
|
|
|
REQUIRES = xpcom libtest
|
|
endif # MOZ_LIBTEST
|
|
|
|
EXPORTS = nsTestEventsApi.h \
|
|
nsTestQueryApi.h
|
|
|
|
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|