VPX: vpx_filter_block1d16_(v8, v8_avg)
[aom.git] / libs.mk
blobe6fb068bf76d67cbeabeebea5c4953870560c5b5
1 ##
2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ##
4 ## Use of this source code is governed by a BSD-style license
5 ## that can be found in the LICENSE file in the root of the source
6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree.
9 ##
12 # ARM assembly files are written in RVCT-style. We use some make magic to
13 # filter those files to allow GCC compilation
14 ifeq ($(ARCH_ARM),yes)
15 ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.s,.asm)
16 else
17 ASM:=.asm
18 endif
21 # Rule to generate runtime cpu detection files
23 define rtcd_h_template
24 $$(BUILD_PFX)$(1).h: $$(SRC_PATH_BARE)/$(2)
25 @echo " [CREATE] $$@"
26 $$(qexec)$$(SRC_PATH_BARE)/build/make/rtcd.pl --arch=$$(TGT_ISA) \
27 --sym=$(1) \
28 --config=$$(CONFIG_DIR)$$(target)-$$(TOOLCHAIN).mk \
29 $$(RTCD_OPTIONS) $$^ > $$@
30 CLEAN-OBJS += $$(BUILD_PFX)$(1).h
31 RTCD += $$(BUILD_PFX)$(1).h
32 endef
34 CODEC_SRCS-yes += CHANGELOG
35 CODEC_SRCS-yes += libs.mk
37 include $(SRC_PATH_BARE)/vpx/vpx_codec.mk
38 CODEC_SRCS-yes += $(addprefix vpx/,$(call enabled,API_SRCS))
39 CODEC_DOC_SRCS += $(addprefix vpx/,$(call enabled,API_DOC_SRCS))
41 include $(SRC_PATH_BARE)/vpx_mem/vpx_mem.mk
42 CODEC_SRCS-yes += $(addprefix vpx_mem/,$(call enabled,MEM_SRCS))
44 include $(SRC_PATH_BARE)/vpx_scale/vpx_scale.mk
45 CODEC_SRCS-yes += $(addprefix vpx_scale/,$(call enabled,SCALE_SRCS))
47 include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk
48 CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS))
50 include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk
51 CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS))
53 include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk
54 CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS))
56 ifeq ($(CONFIG_VP8),yes)
57 VP8_PREFIX=vp8/
58 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
59 endif
61 ifeq ($(CONFIG_VP8_ENCODER),yes)
62 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx.mk
63 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_CX_SRCS))
64 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_CX_EXPORTS))
65 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
66 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
67 CODEC_DOC_SECTIONS += vp8 vp8_encoder
68 endif
70 ifeq ($(CONFIG_VP8_DECODER),yes)
71 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx.mk
72 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_DX_SRCS))
73 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_DX_EXPORTS))
74 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
75 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
76 CODEC_DOC_SECTIONS += vp8 vp8_decoder
77 endif
79 ifeq ($(CONFIG_VP9),yes)
80 VP9_PREFIX=vp9/
81 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk
82 endif
84 ifeq ($(CONFIG_VP9_ENCODER),yes)
85 VP9_PREFIX=vp9/
86 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9cx.mk
87 CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_CX_SRCS))
88 CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_CX_EXPORTS))
89 CODEC_SRCS-yes += $(VP9_PREFIX)vp9cx.mk vpx/vp8.h vpx/vp8cx.h
90 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
91 INSTALL-LIBS-$(CONFIG_SPATIAL_SVC) += include/vpx/svc_context.h
92 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
93 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h
94 CODEC_DOC_SECTIONS += vp9 vp9_encoder
95 endif
97 ifeq ($(CONFIG_VP9_DECODER),yes)
98 VP9_PREFIX=vp9/
99 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9dx.mk
100 CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_DX_SRCS))
101 CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_DX_EXPORTS))
102 CODEC_SRCS-yes += $(VP9_PREFIX)vp9dx.mk vpx/vp8.h vpx/vp8dx.h
103 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
104 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
105 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h
106 CODEC_DOC_SECTIONS += vp9 vp9_decoder
107 endif
109 VP9_PREFIX=vp9/
110 $(BUILD_PFX)$(VP9_PREFIX)%.c.o: CFLAGS += -Wextra
112 # VP10 make file
113 ifeq ($(CONFIG_VP10),yes)
114 VP10_PREFIX=vp10/
115 include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10_common.mk
116 endif
118 ifeq ($(CONFIG_VP10_ENCODER),yes)
119 VP10_PREFIX=vp10/
120 include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10cx.mk
121 CODEC_SRCS-yes += $(addprefix $(VP10_PREFIX),$(call enabled,VP10_CX_SRCS))
122 CODEC_EXPORTS-yes += $(addprefix $(VP10_PREFIX),$(VP10_CX_EXPORTS))
123 CODEC_SRCS-yes += $(VP10_PREFIX)vp10cx.mk vpx/vp8.h vpx/vp8cx.h
124 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
125 INSTALL-LIBS-$(CONFIG_SPATIAL_SVC) += include/vpx/svc_context.h
126 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP10_PREFIX)/%
127 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h
128 CODEC_DOC_SECTIONS += vp9 vp9_encoder
129 endif
131 ifeq ($(CONFIG_VP10_DECODER),yes)
132 VP10_PREFIX=vp10/
133 include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10dx.mk
134 CODEC_SRCS-yes += $(addprefix $(VP10_PREFIX),$(call enabled,VP10_DX_SRCS))
135 CODEC_EXPORTS-yes += $(addprefix $(VP10_PREFIX),$(VP10_DX_EXPORTS))
136 CODEC_SRCS-yes += $(VP10_PREFIX)vp10dx.mk vpx/vp8.h vpx/vp8dx.h
137 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
138 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP10_PREFIX)/%
139 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h
140 CODEC_DOC_SECTIONS += vp9 vp9_decoder
141 endif
143 VP10_PREFIX=vp10/
144 $(BUILD_PFX)$(VP10_PREFIX)%.c.o: CFLAGS += -Wextra
146 ifeq ($(CONFIG_ENCODERS),yes)
147 CODEC_DOC_SECTIONS += encoder
148 endif
149 ifeq ($(CONFIG_DECODERS),yes)
150 CODEC_DOC_SECTIONS += decoder
151 endif
154 ifeq ($(CONFIG_MSVS),yes)
155 CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)
156 GTEST_LIB=$(if $(CONFIG_STATIC_MSVCRT),gtestmt,gtestmd)
157 # This variable uses deferred expansion intentionally, since the results of
158 # $(wildcard) may change during the course of the Make.
159 VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
160 endif
162 # The following pairs define a mapping of locations in the distribution
163 # tree to locations in the source/build trees.
164 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx/%
165 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx_ports/%
166 INSTALL_MAPS += $(LIBSUBDIR)/% %
167 INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
168 ifeq ($(CONFIG_MSVS),yes)
169 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Release/%)
170 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Debug/%)
171 endif
173 CODEC_SRCS-yes += build/make/version.sh
174 CODEC_SRCS-yes += build/make/rtcd.pl
175 CODEC_SRCS-yes += vpx_ports/emmintrin_compat.h
176 CODEC_SRCS-yes += vpx_ports/mem_ops.h
177 CODEC_SRCS-yes += vpx_ports/mem_ops_aligned.h
178 CODEC_SRCS-yes += vpx_ports/vpx_once.h
179 CODEC_SRCS-yes += $(BUILD_PFX)vpx_config.c
180 INSTALL-SRCS-no += $(BUILD_PFX)vpx_config.c
181 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
182 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += third_party/x86inc/x86inc.asm
183 endif
184 CODEC_EXPORTS-yes += vpx/exports_com
185 CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_enc
186 CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec
188 INSTALL-LIBS-yes += include/vpx/vpx_codec.h
189 INSTALL-LIBS-yes += include/vpx/vpx_frame_buffer.h
190 INSTALL-LIBS-yes += include/vpx/vpx_image.h
191 INSTALL-LIBS-yes += include/vpx/vpx_integer.h
192 INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h
193 INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h
194 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
195 ifeq ($(CONFIG_MSVS),yes)
196 INSTALL-LIBS-yes += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
197 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
198 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll)
199 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
200 endif
201 else
202 INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a
203 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a
204 endif
206 CODEC_SRCS=$(call enabled,CODEC_SRCS)
207 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
208 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
211 # Generate a list of all enabled sources, in particular for exporting to gyp
212 # based build systems.
213 libvpx_srcs.txt:
214 @echo " [CREATE] $@"
215 @echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
216 CLEAN-OBJS += libvpx_srcs.txt
219 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
220 ifeq ($(CONFIG_MSVS),yes)
222 vpx.def: $(call enabled,CODEC_EXPORTS)
223 @echo " [CREATE] $@"
224 $(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
225 --name=vpx\
226 --out=$@ $^
227 CLEAN-OBJS += vpx.def
229 # Assembly files that are included, but don't define symbols themselves.
230 # Filtered out to avoid Visual Studio build warnings.
231 ASM_INCLUDES := \
232 third_party/x86inc/x86inc.asm \
233 vpx_config.asm \
234 vpx_ports/x86_abi_support.asm \
236 vpx.$(VCPROJ_SFX): $(CODEC_SRCS) vpx.def
237 @echo " [CREATE] $@"
238 $(qexec)$(GEN_VCPROJ) \
239 $(if $(CONFIG_SHARED),--dll,--lib) \
240 --target=$(TOOLCHAIN) \
241 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
242 --name=vpx \
243 --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
244 --module-def=vpx.def \
245 --ver=$(CONFIG_VS_VERSION) \
246 --src-path-bare="$(SRC_PATH_BARE)" \
247 --out=$@ $(CFLAGS) \
248 $(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
249 --src-path-bare="$(SRC_PATH_BARE)" \
251 PROJECTS-yes += vpx.$(VCPROJ_SFX)
253 vpx.$(VCPROJ_SFX): vpx_config.asm
254 vpx.$(VCPROJ_SFX): $(RTCD)
256 endif
257 else
258 LIBVPX_OBJS=$(call objs,$(CODEC_SRCS))
259 OBJS-yes += $(LIBVPX_OBJS)
260 LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a
261 $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS)
263 SO_VERSION_MAJOR := 3
264 SO_VERSION_MINOR := 0
265 SO_VERSION_PATCH := 0
266 ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
267 LIBVPX_SO := libvpx.$(SO_VERSION_MAJOR).dylib
268 SHARED_LIB_SUF := .dylib
269 EXPORT_FILE := libvpx.syms
270 LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
271 libvpx.dylib )
272 else
273 ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
274 LIBVPX_SO := libvpx$(SO_VERSION_MAJOR).dll
275 SHARED_LIB_SUF := _dll.a
276 EXPORT_FILE := libvpx.def
277 LIBVPX_SO_SYMLINKS :=
278 LIBVPX_SO_IMPLIB := libvpx_dll.a
279 else
280 LIBVPX_SO := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
281 SHARED_LIB_SUF := .so
282 EXPORT_FILE := libvpx.ver
283 LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
284 libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \
285 libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
286 endif
287 endif
289 LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\
290 $(notdir $(LIBVPX_SO_SYMLINKS)) \
291 $(if $(LIBVPX_SO_IMPLIB), $(BUILD_PFX)$(LIBVPX_SO_IMPLIB))
292 $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE)
293 $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm
294 $(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(SO_VERSION_MAJOR)
295 $(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
297 libvpx.ver: $(call enabled,CODEC_EXPORTS)
298 @echo " [CREATE] $@"
299 $(qexec)echo "{ global:" > $@
300 $(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done
301 $(qexec)echo "local: *; };" >> $@
302 CLEAN-OBJS += libvpx.ver
304 libvpx.syms: $(call enabled,CODEC_EXPORTS)
305 @echo " [CREATE] $@"
306 $(qexec)awk '{print "_"$$2}' $^ >$@
307 CLEAN-OBJS += libvpx.syms
309 libvpx.def: $(call enabled,CODEC_EXPORTS)
310 @echo " [CREATE] $@"
311 $(qexec)echo LIBRARY $(LIBVPX_SO:.dll=) INITINSTANCE TERMINSTANCE > $@
312 $(qexec)echo "DATA MULTIPLE NONSHARED" >> $@
313 $(qexec)echo "EXPORTS" >> $@
314 $(qexec)awk '!/vpx_svc_*/ {print "_"$$2}' $^ >>$@
315 CLEAN-OBJS += libvpx.def
317 libvpx_dll.a: $(LIBVPX_SO)
318 @echo " [IMPLIB] $@"
319 $(qexec)emximp -o $@ $<
320 CLEAN-OBJS += libvpx_dll.a
322 define libvpx_symlink_template
323 $(1): $(2)
324 @echo " [LN] $(2) $$@"
325 $(qexec)mkdir -p $$(dir $$@)
326 $(qexec)ln -sf $(2) $$@
327 endef
329 $(eval $(call libvpx_symlink_template,\
330 $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\
331 $(BUILD_PFX)$(LIBVPX_SO)))
332 $(eval $(call libvpx_symlink_template,\
333 $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\
334 $(LIBVPX_SO)))
337 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS)
338 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO)
339 INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB))
342 LIBS-yes += vpx.pc
343 vpx.pc: config.mk libs.mk
344 @echo " [CREATE] $@"
345 $(qexec)echo '# pkg-config file from libvpx $(VERSION_STRING)' > $@
346 $(qexec)echo 'prefix=$(PREFIX)' >> $@
347 $(qexec)echo 'exec_prefix=$${prefix}' >> $@
348 $(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
349 $(qexec)echo 'includedir=$${prefix}/include' >> $@
350 $(qexec)echo '' >> $@
351 $(qexec)echo 'Name: vpx' >> $@
352 $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@
353 $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@
354 $(qexec)echo 'Requires:' >> $@
355 $(qexec)echo 'Conflicts:' >> $@
356 $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@
357 ifeq ($(HAVE_PTHREAD_H),yes)
358 $(qexec)echo 'Libs.private: -lm -lpthread' >> $@
359 else
360 $(qexec)echo 'Libs.private: -lm' >> $@
361 endif
362 $(qexec)echo 'Cflags: -I$${includedir}' >> $@
363 INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc
364 INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
365 CLEAN-OBJS += vpx.pc
366 endif
369 # Rule to make assembler configuration file from C configuration file
371 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
372 # YASM
373 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
374 @echo " [CREATE] $@"
375 @egrep "#define [A-Z0-9_]+ [01]" $< \
376 | awk '{print $$2 " equ " $$3}' > $@
377 else
378 ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
379 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
380 @echo " [CREATE] $@"
381 @egrep "#define [A-Z0-9_]+ [01]" $< \
382 | awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
383 @echo " END" $(ADS2GAS) >> $@
384 CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm
385 endif
388 # Add assembler dependencies for configuration.
390 $(filter %.s.o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
391 $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
394 $(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h)
395 CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
399 ## libvpx test directives
401 ifeq ($(CONFIG_UNIT_TESTS),yes)
402 LIBVPX_TEST_DATA_PATH ?= .
404 include $(SRC_PATH_BARE)/test/test.mk
405 LIBVPX_TEST_SRCS=$(addprefix test/,$(call enabled,LIBVPX_TEST_SRCS))
406 LIBVPX_TEST_BIN=./test_libvpx$(EXE_SFX)
407 LIBVPX_TEST_DATA=$(addprefix $(LIBVPX_TEST_DATA_PATH)/,\
408 $(call enabled,LIBVPX_TEST_DATA))
409 libvpx_test_data_url=http://downloads.webmproject.org/test_data/libvpx/$(1)
411 TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
412 TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
413 TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
415 libvpx_test_srcs.txt:
416 @echo " [CREATE] $@"
417 @echo $(LIBVPX_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
418 CLEAN-OBJS += libvpx_test_srcs.txt
420 $(LIBVPX_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
421 @echo " [DOWNLOAD] $@"
422 $(qexec)trap 'rm -f $@' INT TERM &&\
423 curl -L -o $@ $(call libvpx_test_data_url,$(@F))
425 testdata:: $(LIBVPX_TEST_DATA)
426 $(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
427 [ -x "$$(which shasum)" ] && sha1sum=shasum;\
428 [ -x "$$(which sha1)" ] && sha1sum=sha1;\
429 if [ -n "$${sha1sum}" ]; then\
430 set -e;\
431 echo "Checking test data:";\
432 for f in $(call enabled,LIBVPX_TEST_DATA); do\
433 grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
434 (cd $(LIBVPX_TEST_DATA_PATH); $${sha1sum} -c);\
435 done; \
436 else\
437 echo "Skipping test data integrity check, sha1sum not found.";\
440 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
441 ifeq ($(CONFIG_MSVS),yes)
443 gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc
444 @echo " [CREATE] $@"
445 $(qexec)$(GEN_VCPROJ) \
446 --lib \
447 --target=$(TOOLCHAIN) \
448 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
449 --name=gtest \
450 --proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
451 --ver=$(CONFIG_VS_VERSION) \
452 --src-path-bare="$(SRC_PATH_BARE)" \
453 -D_VARIADIC_MAX=10 \
454 --out=gtest.$(VCPROJ_SFX) $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc \
455 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" -I"$(SRC_PATH_BARE)/third_party/googletest/src"
457 PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
459 test_libvpx.$(VCPROJ_SFX): $(LIBVPX_TEST_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
460 @echo " [CREATE] $@"
461 $(qexec)$(GEN_VCPROJ) \
462 --exe \
463 --target=$(TOOLCHAIN) \
464 --name=test_libvpx \
465 -D_VARIADIC_MAX=10 \
466 --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
467 --ver=$(CONFIG_VS_VERSION) \
468 --src-path-bare="$(SRC_PATH_BARE)" \
469 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
470 --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
471 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
472 -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
474 PROJECTS-$(CONFIG_MSVS) += test_libvpx.$(VCPROJ_SFX)
476 LIBVPX_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BIN)))
478 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
479 PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
480 test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
481 @echo " [CREATE] $@"
482 $(qexec)$(GEN_VCPROJ) \
483 --exe \
484 --target=$(TOOLCHAIN) \
485 --name=test_intra_pred_speed \
486 -D_VARIADIC_MAX=10 \
487 --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
488 --ver=$(CONFIG_VS_VERSION) \
489 --src-path-bare="$(SRC_PATH_BARE)" \
490 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
491 --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
492 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
493 -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
494 endif # TEST_INTRA_PRED_SPEED
495 endif
496 else
498 include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
499 GTEST_SRCS := $(addprefix third_party/googletest/src/,$(call enabled,GTEST_SRCS))
500 GTEST_OBJS=$(call objs,$(GTEST_SRCS))
501 ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
502 # Disabling pthreads globally will cause issues on darwin and possibly elsewhere
503 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
504 endif
505 GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src
506 GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/include
507 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
508 OBJS-yes += $(GTEST_OBJS)
509 LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
510 $(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
512 LIBVPX_TEST_OBJS=$(sort $(call objs,$(LIBVPX_TEST_SRCS)))
513 $(LIBVPX_TEST_OBJS) $(LIBVPX_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
514 OBJS-yes += $(LIBVPX_TEST_OBJS)
515 BINS-yes += $(LIBVPX_TEST_BIN)
517 CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
518 CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
519 TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
520 $(LIBVPX_TEST_BIN): $(TEST_LIBS)
521 $(eval $(call linkerxx_template,$(LIBVPX_TEST_BIN), \
522 $(LIBVPX_TEST_OBJS) \
523 -L. -lvpx -lgtest $(extralibs) -lm))
525 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
526 $(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
527 OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
528 BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
530 $(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
531 $(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
532 $(TEST_INTRA_PRED_SPEED_OBJS) \
533 -L. -lvpx -lgtest $(extralibs) -lm))
534 endif # TEST_INTRA_PRED_SPEED
536 endif # CONFIG_UNIT_TESTS
538 # Install test sources only if codec source is included
539 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
540 $(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
541 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBVPX_TEST_SRCS)
542 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
544 define test_shard_template
545 test:: test_shard.$(1)
546 test-no-data-check:: test_shard_ndc.$(1)
547 test_shard.$(1) test_shard_ndc.$(1): $(LIBVPX_TEST_BIN)
548 @set -e; \
549 export GTEST_SHARD_INDEX=$(1); \
550 export GTEST_TOTAL_SHARDS=$(2); \
551 $(LIBVPX_TEST_BIN)
552 test_shard.$(1): testdata
553 .PHONY: test_shard.$(1)
554 endef
556 NUM_SHARDS := 10
557 SHARDS := 0 1 2 3 4 5 6 7 8 9
558 $(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
560 endif
563 ## documentation directives
565 CLEAN-OBJS += libs.doxy
566 DOCS-yes += libs.doxy
567 libs.doxy: $(CODEC_DOC_SRCS)
568 @echo " [CREATE] $@"
569 @rm -f $@
570 @echo "INPUT += $^" >> $@
571 @echo "INCLUDE_PATH += ." >> $@;
572 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
574 ## Generate rtcd.h for all objects
575 ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
576 $(OBJS-yes:.o=.d): $(RTCD)
577 else
578 $(OBJS-yes): $(RTCD)
579 endif
581 ## Update the global src list
582 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS)
585 ## vpxdec/vpxenc tests.
587 ifeq ($(CONFIG_UNIT_TESTS),yes)
588 TEST_BIN_PATH = .
589 ifeq ($(CONFIG_MSVS),yes)
590 # MSVC will build both Debug and Release configurations of tools in a
591 # sub directory named for the current target. Assume the user wants to
592 # run the Release tools, and assign TEST_BIN_PATH accordingly.
593 # TODO(tomfinegan): Is this adequate for ARM?
594 # TODO(tomfinegan): Support running the debug versions of tools?
595 TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
596 endif
597 utiltest utiltest-no-data-check:
598 $(qexec)$(SRC_PATH_BARE)/test/vpxdec.sh \
599 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
600 --bin-path $(TEST_BIN_PATH)
601 $(qexec)$(SRC_PATH_BARE)/test/vpxenc.sh \
602 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
603 --bin-path $(TEST_BIN_PATH)
604 utiltest: testdata
605 else
606 utiltest utiltest-no-data-check:
607 @echo Unit tests must be enabled to make the utiltest target.
608 endif
611 ## Example tests.
613 ifeq ($(CONFIG_UNIT_TESTS),yes)
614 # All non-MSVC targets output example targets in a sub dir named examples.
615 EXAMPLES_BIN_PATH = examples
616 ifeq ($(CONFIG_MSVS),yes)
617 # MSVC will build both Debug and Release configurations of the examples in a
618 # sub directory named for the current target. Assume the user wants to
619 # run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
620 # TODO(tomfinegan): Is this adequate for ARM?
621 # TODO(tomfinegan): Support running the debug versions of tools?
622 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
623 endif
624 exampletest exampletest-no-data-check: examples
625 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
626 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
627 --bin-path $(EXAMPLES_BIN_PATH)
628 exampletest: testdata
629 else
630 exampletest exampletest-no-data-check:
631 @echo Unit tests must be enabled to make the exampletest target.
632 endif