Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: source/libvpx/examples.mk

Issue 1302353004: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/libvpx/configure ('k') | source/libvpx/examples/vp9_spatial_svc_encoder.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ## 3 ##
4 ## Use of this source code is governed by a BSD-style license 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 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 6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may 7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree. 8 ## be found in the AUTHORS file in the root of the source tree.
9 ## 9 ##
10 10
11 LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \ 11 LIBYUV_SRCS += third_party/libyuv/include/libyuv/basic_types.h \
12 third_party/libyuv/include/libyuv/convert.h \ 12 third_party/libyuv/include/libyuv/convert.h \
13 third_party/libyuv/include/libyuv/convert_argb.h \ 13 third_party/libyuv/include/libyuv/convert_argb.h \
14 third_party/libyuv/include/libyuv/convert_from.h \ 14 third_party/libyuv/include/libyuv/convert_from.h \
15 third_party/libyuv/include/libyuv/cpu_id.h \ 15 third_party/libyuv/include/libyuv/cpu_id.h \
16 third_party/libyuv/include/libyuv/planar_functions.h \ 16 third_party/libyuv/include/libyuv/planar_functions.h \
17 third_party/libyuv/include/libyuv/rotate.h \ 17 third_party/libyuv/include/libyuv/rotate.h \
18 third_party/libyuv/include/libyuv/row.h \ 18 third_party/libyuv/include/libyuv/row.h \
19 third_party/libyuv/include/libyuv/scale.h \ 19 third_party/libyuv/include/libyuv/scale.h \
20 third_party/libyuv/include/libyuv/scale_row.h \ 20 third_party/libyuv/include/libyuv/scale_row.h \
21 third_party/libyuv/source/cpu_id.cc \ 21 third_party/libyuv/source/cpu_id.cc \
22 third_party/libyuv/source/planar_functions.cc \ 22 third_party/libyuv/source/planar_functions.cc \
23 third_party/libyuv/source/row_any.cc \ 23 third_party/libyuv/source/row_any.cc \
24 third_party/libyuv/source/row_common.cc \ 24 third_party/libyuv/source/row_common.cc \
25 third_party/libyuv/source/row_gcc.cc \
25 third_party/libyuv/source/row_mips.cc \ 26 third_party/libyuv/source/row_mips.cc \
26 third_party/libyuv/source/row_neon.cc \ 27 third_party/libyuv/source/row_neon.cc \
27 third_party/libyuv/source/row_neon64.cc \ 28 third_party/libyuv/source/row_neon64.cc \
28 third_party/libyuv/source/row_posix.cc \
29 third_party/libyuv/source/row_win.cc \ 29 third_party/libyuv/source/row_win.cc \
30 third_party/libyuv/source/scale.cc \ 30 third_party/libyuv/source/scale.cc \
31 third_party/libyuv/source/scale_any.cc \
31 third_party/libyuv/source/scale_common.cc \ 32 third_party/libyuv/source/scale_common.cc \
33 third_party/libyuv/source/scale_gcc.cc \
32 third_party/libyuv/source/scale_mips.cc \ 34 third_party/libyuv/source/scale_mips.cc \
33 third_party/libyuv/source/scale_neon.cc \ 35 third_party/libyuv/source/scale_neon.cc \
34 third_party/libyuv/source/scale_neon64.cc \ 36 third_party/libyuv/source/scale_neon64.cc \
35 third_party/libyuv/source/scale_posix.cc \
36 third_party/libyuv/source/scale_win.cc \ 37 third_party/libyuv/source/scale_win.cc \
37 38
38 LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \ 39 LIBWEBM_MUXER_SRCS += third_party/libwebm/mkvmuxer.cpp \
39 third_party/libwebm/mkvmuxerutil.cpp \ 40 third_party/libwebm/mkvmuxerutil.cpp \
40 third_party/libwebm/mkvwriter.cpp \ 41 third_party/libwebm/mkvwriter.cpp \
41 third_party/libwebm/mkvmuxer.hpp \ 42 third_party/libwebm/mkvmuxer.hpp \
42 third_party/libwebm/mkvmuxertypes.hpp \ 43 third_party/libwebm/mkvmuxertypes.hpp \
43 third_party/libwebm/mkvmuxerutil.hpp \ 44 third_party/libwebm/mkvmuxerutil.hpp \
44 third_party/libwebm/mkvparser.hpp \ 45 third_party/libwebm/mkvparser.hpp \
45 third_party/libwebm/mkvwriter.hpp \ 46 third_party/libwebm/mkvwriter.hpp \
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 318
318 # Build Visual Studio Projects. We use a template here to instantiate 319 # Build Visual Studio Projects. We use a template here to instantiate
319 # explicit rules rather than using an implicit rule because we want to 320 # explicit rules rather than using an implicit rule because we want to
320 # leverage make's VPATH searching rather than specifying the paths on 321 # leverage make's VPATH searching rather than specifying the paths on
321 # each file in ALL_EXAMPLES. This has the unfortunate side effect that 322 # each file in ALL_EXAMPLES. This has the unfortunate side effect that
322 # touching the source files trigger a rebuild of the project files 323 # touching the source files trigger a rebuild of the project files
323 # even though there is no real dependency there (the dependency is on 324 # even though there is no real dependency there (the dependency is on
324 # the makefiles). We may want to revisit this. 325 # the makefiles). We may want to revisit this.
325 define vcproj_template 326 define vcproj_template
326 $(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX) 327 $(1): $($(1:.$(VCPROJ_SFX)=).SRCS) vpx.$(VCPROJ_SFX)
327 » @echo " [vcproj] $$@" 328 » $(if $(quiet),@echo " [vcproj] $$@")
328 » $$(GEN_VCPROJ)\ 329 » $(qexec)$$(GEN_VCPROJ)\
329 --exe\ 330 --exe\
330 --target=$$(TOOLCHAIN)\ 331 --target=$$(TOOLCHAIN)\
331 --name=$$(@:.$(VCPROJ_SFX)=)\ 332 --name=$$(@:.$(VCPROJ_SFX)=)\
332 --ver=$$(CONFIG_VS_VERSION)\ 333 --ver=$$(CONFIG_VS_VERSION)\
333 --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\ 334 --proj-guid=$$($$(@:.$(VCPROJ_SFX)=).GUID)\
334 --src-path-bare="$(SRC_PATH_BARE)" \ 335 --src-path-bare="$(SRC_PATH_BARE)" \
335 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \ 336 $$(if $$(CONFIG_STATIC_MSVCRT),--static-crt) \
336 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \ 337 --out=$$@ $$(INTERNAL_CFLAGS) $$(CFLAGS) \
337 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^ 338 $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -l$$(CODEC_LIB) $$^
338 endef 339 endef
(...skipping 30 matching lines...) Expand all
369 "pieces like the samples are. Their source is included here"\ 370 "pieces like the samples are. Their source is included here"\
370 "for reference. The following utilities are included:" >> $@ 371 "for reference. The following utilities are included:" >> $@
371 @$(foreach ex,$(sort $(UTILS:.c=)),\ 372 @$(foreach ex,$(sort $(UTILS:.c=)),\
372 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) 373 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;)
373 @echo "*/" >> $@ 374 @echo "*/" >> $@
374 375
375 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) 376 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox)
376 DOCS-yes += examples.doxy samples.dox 377 DOCS-yes += examples.doxy samples.dox
377 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) 378 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox)
378 @echo "INPUT += $^" > $@ 379 @echo "INPUT += $^" > $@
OLDNEW
« no previous file with comments | « source/libvpx/configure ('k') | source/libvpx/examples/vp9_spatial_svc_encoder.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698