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