]> granicus.if.org Git - libvpx/blob - libs.mk
Merge "cosmetics: Beautify whitespaces and line wrapping"
[libvpx] / libs.mk
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 ##
10
11
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
19
20 #
21 # Rule to generate runtime cpu detection files
22 #
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
33
34 CODEC_SRCS-yes += CHANGELOG
35 CODEC_SRCS-yes += libs.mk
36
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))
40
41 include $(SRC_PATH_BARE)/vpx_mem/vpx_mem.mk
42 CODEC_SRCS-yes += $(addprefix vpx_mem/,$(call enabled,MEM_SRCS))
43
44 include $(SRC_PATH_BARE)/vpx_scale/vpx_scale.mk
45 CODEC_SRCS-yes += $(addprefix vpx_scale/,$(call enabled,SCALE_SRCS))
46
47 include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk
48 CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS))
49
50 include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk
51 CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS))
52
53 include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk
54 CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS))
55
56 ifeq ($(CONFIG_VP8),yes)
57   VP8_PREFIX=vp8/
58   include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
59 endif
60
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
69
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
78
79 ifeq ($(CONFIG_VP9),yes)
80   VP9_PREFIX=vp9/
81   include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk
82 endif
83
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
96
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
108
109 VP9_PREFIX=vp9/
110 $(BUILD_PFX)$(VP9_PREFIX)%.c.o: CFLAGS += -Wextra
111
112 ifeq ($(CONFIG_ENCODERS),yes)
113   CODEC_DOC_SECTIONS += encoder
114 endif
115 ifeq ($(CONFIG_DECODERS),yes)
116   CODEC_DOC_SECTIONS += decoder
117 endif
118
119
120 ifeq ($(CONFIG_MSVS),yes)
121 CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)
122 GTEST_LIB=$(if $(CONFIG_STATIC_MSVCRT),gtestmt,gtestmd)
123 # This variable uses deferred expansion intentionally, since the results of
124 # $(wildcard) may change during the course of the Make.
125 VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
126 endif
127
128 # The following pairs define a mapping of locations in the distribution
129 # tree to locations in the source/build trees.
130 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx/%
131 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx_ports/%
132 INSTALL_MAPS += $(LIBSUBDIR)/%     %
133 INSTALL_MAPS += src/%     $(SRC_PATH_BARE)/%
134 ifeq ($(CONFIG_MSVS),yes)
135 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/%  $(p)/Release/%)
136 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/%  $(p)/Debug/%)
137 endif
138
139 CODEC_SRCS-yes += build/make/version.sh
140 CODEC_SRCS-yes += build/make/rtcd.pl
141 CODEC_SRCS-yes += vpx_ports/emmintrin_compat.h
142 CODEC_SRCS-yes += vpx_ports/mem_ops.h
143 CODEC_SRCS-yes += vpx_ports/mem_ops_aligned.h
144 CODEC_SRCS-yes += vpx_ports/vpx_once.h
145 CODEC_SRCS-yes += $(BUILD_PFX)vpx_config.c
146 INSTALL-SRCS-no += $(BUILD_PFX)vpx_config.c
147 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
148 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += third_party/x86inc/x86inc.asm
149 endif
150 CODEC_EXPORTS-yes += vpx/exports_com
151 CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_enc
152 ifeq ($(CONFIG_SPATIAL_SVC),yes)
153 CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_spatial_svc
154 endif
155 CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec
156
157 INSTALL-LIBS-yes += include/vpx/vpx_codec.h
158 INSTALL-LIBS-yes += include/vpx/vpx_frame_buffer.h
159 INSTALL-LIBS-yes += include/vpx/vpx_image.h
160 INSTALL-LIBS-yes += include/vpx/vpx_integer.h
161 INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h
162 INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h
163 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
164 ifeq ($(CONFIG_MSVS),yes)
165 INSTALL-LIBS-yes                  += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
166 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
167 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll)
168 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
169 endif
170 else
171 INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a
172 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a
173 endif
174
175 CODEC_SRCS=$(call enabled,CODEC_SRCS)
176 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
177 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
178
179
180 # Generate a list of all enabled sources, in particular for exporting to gyp
181 # based build systems.
182 libvpx_srcs.txt:
183         @echo "    [CREATE] $@"
184         @echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
185 CLEAN-OBJS += libvpx_srcs.txt
186
187
188 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
189 ifeq ($(CONFIG_MSVS),yes)
190
191 vpx.def: $(call enabled,CODEC_EXPORTS)
192         @echo "    [CREATE] $@"
193         $(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
194             --name=vpx\
195             --out=$@ $^
196 CLEAN-OBJS += vpx.def
197
198 # Assembly files that are included, but don't define symbols themselves.
199 # Filtered out to avoid Visual Studio build warnings.
200 ASM_INCLUDES := \
201     third_party/x86inc/x86inc.asm \
202     vpx_config.asm \
203     vpx_ports/x86_abi_support.asm \
204
205 vpx.$(VCPROJ_SFX): $(CODEC_SRCS) vpx.def
206         @echo "    [CREATE] $@"
207         $(qexec)$(GEN_VCPROJ) \
208             $(if $(CONFIG_SHARED),--dll,--lib) \
209             --target=$(TOOLCHAIN) \
210             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
211             --name=vpx \
212             --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
213             --module-def=vpx.def \
214             --ver=$(CONFIG_VS_VERSION) \
215             --src-path-bare="$(SRC_PATH_BARE)" \
216             --out=$@ $(CFLAGS) \
217             $(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
218             --src-path-bare="$(SRC_PATH_BARE)" \
219
220 PROJECTS-yes += vpx.$(VCPROJ_SFX)
221
222 vpx.$(VCPROJ_SFX): vpx_config.asm
223 vpx.$(VCPROJ_SFX): $(RTCD)
224
225 endif
226 else
227 LIBVPX_OBJS=$(call objs,$(CODEC_SRCS))
228 OBJS-yes += $(LIBVPX_OBJS)
229 LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a
230 $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS)
231
232 SO_VERSION_MAJOR := 3
233 SO_VERSION_MINOR := 0
234 SO_VERSION_PATCH := 0
235 ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
236 LIBVPX_SO               := libvpx.$(SO_VERSION_MAJOR).dylib
237 SHARED_LIB_SUF          := .dylib
238 EXPORT_FILE             := libvpx.syms
239 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
240                              libvpx.dylib  )
241 else
242 ifeq ($(filter iphonesimulator%,$(TGT_OS)),$(TGT_OS))
243 LIBVPX_SO               := libvpx.$(SO_VERSION_MAJOR).dylib
244 SHARED_LIB_SUF          := .dylib
245 EXPORT_FILE             := libvpx.syms
246 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, libvpx.dylib)
247 else
248 ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
249 LIBVPX_SO               := libvpx$(SO_VERSION_MAJOR).dll
250 SHARED_LIB_SUF          := _dll.a
251 EXPORT_FILE             := libvpx.def
252 LIBVPX_SO_SYMLINKS      :=
253 LIBVPX_SO_IMPLIB        := libvpx_dll.a
254 else
255 LIBVPX_SO               := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
256 SHARED_LIB_SUF          := .so
257 EXPORT_FILE             := libvpx.ver
258 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
259                              libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \
260                              libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
261 endif
262 endif
263 endif
264
265 LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\
266                            $(notdir $(LIBVPX_SO_SYMLINKS)) \
267                            $(if $(LIBVPX_SO_IMPLIB), $(BUILD_PFX)$(LIBVPX_SO_IMPLIB))
268 $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE)
269 $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm
270 $(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(SO_VERSION_MAJOR)
271 $(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
272
273 libvpx.ver: $(call enabled,CODEC_EXPORTS)
274         @echo "    [CREATE] $@"
275         $(qexec)echo "{ global:" > $@
276         $(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done
277         $(qexec)echo "local: *; };" >> $@
278 CLEAN-OBJS += libvpx.ver
279
280 libvpx.syms: $(call enabled,CODEC_EXPORTS)
281         @echo "    [CREATE] $@"
282         $(qexec)awk '{print "_"$$2}' $^ >$@
283 CLEAN-OBJS += libvpx.syms
284
285 libvpx.def: $(call enabled,CODEC_EXPORTS)
286         @echo "    [CREATE] $@"
287         $(qexec)echo LIBRARY $(LIBVPX_SO:.dll=) INITINSTANCE TERMINSTANCE > $@
288         $(qexec)echo "DATA MULTIPLE NONSHARED" >> $@
289         $(qexec)echo "EXPORTS" >> $@
290         $(qexec)awk '!/vpx_svc_*/ {print "_"$$2}' $^ >>$@
291 CLEAN-OBJS += libvpx.def
292
293 libvpx_dll.a: $(LIBVPX_SO)
294         @echo "    [IMPLIB] $@"
295         $(qexec)emximp -o $@ $<
296 CLEAN-OBJS += libvpx_dll.a
297
298 define libvpx_symlink_template
299 $(1): $(2)
300         @echo "    [LN]     $(2) $$@"
301         $(qexec)mkdir -p $$(dir $$@)
302         $(qexec)ln -sf $(2) $$@
303 endef
304
305 $(eval $(call libvpx_symlink_template,\
306     $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\
307     $(BUILD_PFX)$(LIBVPX_SO)))
308 $(eval $(call libvpx_symlink_template,\
309     $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\
310     $(LIBVPX_SO)))
311
312
313 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS)
314 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO)
315 INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB))
316
317
318 LIBS-yes += vpx.pc
319 vpx.pc: config.mk libs.mk
320         @echo "    [CREATE] $@"
321         $(qexec)echo '# pkg-config file from libvpx $(VERSION_STRING)' > $@
322         $(qexec)echo 'prefix=$(PREFIX)' >> $@
323         $(qexec)echo 'exec_prefix=$${prefix}' >> $@
324         $(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
325         $(qexec)echo 'includedir=$${prefix}/include' >> $@
326         $(qexec)echo '' >> $@
327         $(qexec)echo 'Name: vpx' >> $@
328         $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@
329         $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@
330         $(qexec)echo 'Requires:' >> $@
331         $(qexec)echo 'Conflicts:' >> $@
332         $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@
333 ifeq ($(HAVE_PTHREAD_H),yes)
334         $(qexec)echo 'Libs.private: -lm -lpthread' >> $@
335 else
336         $(qexec)echo 'Libs.private: -lm' >> $@
337 endif
338         $(qexec)echo 'Cflags: -I$${includedir}' >> $@
339 INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc
340 INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
341 CLEAN-OBJS += vpx.pc
342 endif
343
344 #
345 # Rule to make assembler configuration file from C configuration file
346 #
347 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
348 # YASM
349 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
350         @echo "    [CREATE] $@"
351         @egrep "#define [A-Z0-9_]+ [01]" $< \
352             | awk '{print $$2 " equ " $$3}' > $@
353 else
354 ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
355 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
356         @echo "    [CREATE] $@"
357         @egrep "#define [A-Z0-9_]+ [01]" $< \
358             | awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
359         @echo "        END" $(ADS2GAS) >> $@
360 CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm
361 endif
362
363 #
364 # Add assembler dependencies for configuration.
365 #
366 $(filter %.s.o,$(OBJS-yes)):     $(BUILD_PFX)vpx_config.asm
367 $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
368
369
370 $(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h)
371 CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
372
373 #
374 # Add include path for libwebm sources.
375 #
376 ifeq ($(CONFIG_WEBM_IO),yes)
377   CXXFLAGS += -I$(SRC_PATH_BARE)/third_party/libwebm
378 endif
379
380 ##
381 ## libvpx test directives
382 ##
383 ifeq ($(CONFIG_UNIT_TESTS),yes)
384 LIBVPX_TEST_DATA_PATH ?= .
385
386 include $(SRC_PATH_BARE)/test/test.mk
387 LIBVPX_TEST_SRCS=$(addprefix test/,$(call enabled,LIBVPX_TEST_SRCS))
388 LIBVPX_TEST_BIN=./test_libvpx$(EXE_SFX)
389 LIBVPX_TEST_DATA=$(addprefix $(LIBVPX_TEST_DATA_PATH)/,\
390                      $(call enabled,LIBVPX_TEST_DATA))
391 libvpx_test_data_url=http://downloads.webmproject.org/test_data/libvpx/$(1)
392
393 TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
394 TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
395 TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
396
397 libvpx_test_srcs.txt:
398         @echo "    [CREATE] $@"
399         @echo $(LIBVPX_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
400 CLEAN-OBJS += libvpx_test_srcs.txt
401
402 $(LIBVPX_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
403         @echo "    [DOWNLOAD] $@"
404         $(qexec)trap 'rm -f $@' INT TERM &&\
405             curl -L -o $@ $(call libvpx_test_data_url,$(@F))
406
407 testdata:: $(LIBVPX_TEST_DATA)
408         $(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
409           [ -x "$$(which shasum)" ] && sha1sum=shasum;\
410           [ -x "$$(which sha1)" ] && sha1sum=sha1;\
411           if [ -n "$${sha1sum}" ]; then\
412             set -e;\
413             echo "Checking test data:";\
414             for f in $(call enabled,LIBVPX_TEST_DATA); do\
415                 grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
416                     (cd $(LIBVPX_TEST_DATA_PATH); $${sha1sum} -c);\
417             done; \
418         else\
419             echo "Skipping test data integrity check, sha1sum not found.";\
420         fi
421
422 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
423 ifeq ($(CONFIG_MSVS),yes)
424
425 gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc
426         @echo "    [CREATE] $@"
427         $(qexec)$(GEN_VCPROJ) \
428             --lib \
429             --target=$(TOOLCHAIN) \
430             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
431             --name=gtest \
432             --proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
433             --ver=$(CONFIG_VS_VERSION) \
434             --src-path-bare="$(SRC_PATH_BARE)" \
435             -D_VARIADIC_MAX=10 \
436             --out=gtest.$(VCPROJ_SFX) $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc \
437             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" -I"$(SRC_PATH_BARE)/third_party/googletest/src"
438
439 PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
440
441 test_libvpx.$(VCPROJ_SFX): $(LIBVPX_TEST_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
442         @echo "    [CREATE] $@"
443         $(qexec)$(GEN_VCPROJ) \
444             --exe \
445             --target=$(TOOLCHAIN) \
446             --name=test_libvpx \
447             -D_VARIADIC_MAX=10 \
448             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
449             --ver=$(CONFIG_VS_VERSION) \
450             --src-path-bare="$(SRC_PATH_BARE)" \
451             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
452             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
453             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
454             $(if $(CONFIG_WEBM_IO),-I"$(SRC_PATH_BARE)/third_party/libwebm") \
455             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
456
457 PROJECTS-$(CONFIG_MSVS) += test_libvpx.$(VCPROJ_SFX)
458
459 LIBVPX_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BIN)))
460
461 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
462 PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
463 test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
464         @echo "    [CREATE] $@"
465         $(qexec)$(GEN_VCPROJ) \
466             --exe \
467             --target=$(TOOLCHAIN) \
468             --name=test_intra_pred_speed \
469             -D_VARIADIC_MAX=10 \
470             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
471             --ver=$(CONFIG_VS_VERSION) \
472             --src-path-bare="$(SRC_PATH_BARE)" \
473             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
474             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
475             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
476             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
477 endif  # TEST_INTRA_PRED_SPEED
478 endif
479 else
480
481 include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
482 GTEST_SRCS := $(addprefix third_party/googletest/src/,$(call enabled,GTEST_SRCS))
483 GTEST_OBJS=$(call objs,$(GTEST_SRCS))
484 ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
485 # Disabling pthreads globally will cause issues on darwin and possibly elsewhere
486 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
487 endif
488 GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src
489 GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/include
490 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
491 OBJS-yes += $(GTEST_OBJS)
492 LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
493 $(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
494
495 LIBVPX_TEST_OBJS=$(sort $(call objs,$(LIBVPX_TEST_SRCS)))
496 $(LIBVPX_TEST_OBJS) $(LIBVPX_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
497 OBJS-yes += $(LIBVPX_TEST_OBJS)
498 BINS-yes += $(LIBVPX_TEST_BIN)
499
500 CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
501 CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
502 TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
503 $(LIBVPX_TEST_BIN): $(TEST_LIBS)
504 $(eval $(call linkerxx_template,$(LIBVPX_TEST_BIN), \
505               $(LIBVPX_TEST_OBJS) \
506               -L. -lvpx -lgtest $(extralibs) -lm))
507
508 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
509 $(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
510 OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
511 BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
512
513 $(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
514 $(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
515               $(TEST_INTRA_PRED_SPEED_OBJS) \
516               -L. -lvpx -lgtest $(extralibs) -lm))
517 endif  # TEST_INTRA_PRED_SPEED
518
519 endif  # CONFIG_UNIT_TESTS
520
521 # Install test sources only if codec source is included
522 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
523     $(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
524 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBVPX_TEST_SRCS)
525 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
526
527 define test_shard_template
528 test:: test_shard.$(1)
529 test-no-data-check:: test_shard_ndc.$(1)
530 test_shard.$(1) test_shard_ndc.$(1): $(LIBVPX_TEST_BIN)
531         @set -e; \
532          export GTEST_SHARD_INDEX=$(1); \
533          export GTEST_TOTAL_SHARDS=$(2); \
534          $(LIBVPX_TEST_BIN)
535 test_shard.$(1): testdata
536 .PHONY: test_shard.$(1)
537 endef
538
539 NUM_SHARDS := 10
540 SHARDS := 0 1 2 3 4 5 6 7 8 9
541 $(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
542
543 endif
544
545 ##
546 ## documentation directives
547 ##
548 CLEAN-OBJS += libs.doxy
549 DOCS-yes += libs.doxy
550 libs.doxy: $(CODEC_DOC_SRCS)
551         @echo "    [CREATE] $@"
552         @rm -f $@
553         @echo "INPUT += $^" >> $@
554         @echo "INCLUDE_PATH += ." >> $@;
555         @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
556
557 ## Generate rtcd.h for all objects
558 ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
559 $(OBJS-yes:.o=.d): $(RTCD)
560 else
561 $(OBJS-yes): $(RTCD)
562 endif
563
564 ## Update the global src list
565 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS)
566
567 ##
568 ## vpxdec/vpxenc tests.
569 ##
570 ifeq ($(CONFIG_UNIT_TESTS),yes)
571 TEST_BIN_PATH = .
572 ifeq ($(CONFIG_MSVS),yes)
573 # MSVC will build both Debug and Release configurations of tools in a
574 # sub directory named for the current target. Assume the user wants to
575 # run the Release tools, and assign TEST_BIN_PATH accordingly.
576 # TODO(tomfinegan): Is this adequate for ARM?
577 # TODO(tomfinegan): Support running the debug versions of tools?
578 TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
579 endif
580 utiltest utiltest-no-data-check:
581         $(qexec)$(SRC_PATH_BARE)/test/vpxdec.sh \
582                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
583                 --bin-path $(TEST_BIN_PATH)
584         $(qexec)$(SRC_PATH_BARE)/test/vpxenc.sh \
585                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
586                 --bin-path $(TEST_BIN_PATH)
587 utiltest: testdata
588 else
589 utiltest utiltest-no-data-check:
590         @echo Unit tests must be enabled to make the utiltest target.
591 endif
592
593 ##
594 ## Example tests.
595 ##
596 ifeq ($(CONFIG_UNIT_TESTS),yes)
597 # All non-MSVC targets output example targets in a sub dir named examples.
598 EXAMPLES_BIN_PATH = examples
599 ifeq ($(CONFIG_MSVS),yes)
600 # MSVC will build both Debug and Release configurations of the examples in a
601 # sub directory named for the current target. Assume the user wants to
602 # run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
603 # TODO(tomfinegan): Is this adequate for ARM?
604 # TODO(tomfinegan): Support running the debug versions of tools?
605 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
606 endif
607 exampletest exampletest-no-data-check: examples
608         $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
609                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
610                 --bin-path $(EXAMPLES_BIN_PATH)
611 exampletest: testdata
612 else
613 exampletest exampletest-no-data-check:
614         @echo Unit tests must be enabled to make the exampletest target.
615 endif