interfaces for testing the layout engine. git-svn-id: svn://10.0.0.236/trunk@10627 18797224-902f-48f8-a5cc-f745e15eee43
27 lines
537 B
Makefile
27 lines
537 B
Makefile
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Makefile to build LIBTEST
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
|
|
DEPTH = ../../..
|
|
|
|
include $(DEPTH)/config/config.mk
|
|
|
|
MODULE = libtest
|
|
|
|
ifdef MOZ_LIBTEST
|
|
LIBRARY_NAME = libtest
|
|
|
|
CPPSRCS = nsTestEventsApi.cpp \
|
|
nsTestQueryApi.cpp
|
|
|
|
REQUIRES = xpcom libtest layout
|
|
endif # MOZ_LIBTEST
|
|
|
|
EXPORTS = nsTestEventsApi.h \
|
|
nsTestQueryApi.h
|
|
|
|
include $(DEPTH)/config/rules.mk
|
|
|