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