39 lines
880 B
Makefile
39 lines
880 B
Makefile
DEPTH = ../../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = url-classifier
|
|
LIBRARY_NAME = urlclassifier_s
|
|
XPIDL_MODULE = url-classifier
|
|
LIBXUL_LIBRARY = 1
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
REQUIRES = necko \
|
|
storage \
|
|
string \
|
|
xpcom \
|
|
$(NULL)
|
|
|
|
CPPSRCS = \
|
|
nsUrlClassifierDBService.cpp \
|
|
nsUrlClassifierStreamUpdater.cpp \
|
|
nsUrlClassifierUtils.cpp \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../../build
|
|
$(NULL)
|
|
|
|
|
|
# Same as JS components that are run through the pre-processor.
|
|
EXTRA_PP_COMPONENTS = nsUrlClassifierTable.js \
|
|
nsUrlClassifierLib.js \
|
|
nsUrlClassifierListManager.js \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|