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

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

Issue 1339513003: 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/examples.mk ('k') | source/libvpx/test/dct16x16_test.cc » ('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
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk 47 include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk
48 CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS)) 48 CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS))
49 49
50 include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk 50 include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk
51 CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS)) 51 CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS))
52 52
53 include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk 53 include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk
54 CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS)) 54 CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS))
55 55
56 ifneq ($(CONFIG_VP8_ENCODER)$(CONFIG_VP8_DECODER),) 56 ifeq ($(CONFIG_VP8),yes)
57 VP8_PREFIX=vp8/ 57 VP8_PREFIX=vp8/
58 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk 58 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
59 endif 59 endif
60 60
61 ifeq ($(CONFIG_VP8_ENCODER),yes) 61 ifeq ($(CONFIG_VP8_ENCODER),yes)
62 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx.mk 62 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx.mk
63 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_CX_SRCS)) 63 CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_CX_SRCS))
64 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_CX_EXPORTS)) 64 CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_CX_EXPORTS))
65 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h 65 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
66 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/% 66 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 endif 625 endif
626 exampletest exampletest-no-data-check: examples 626 exampletest exampletest-no-data-check: examples
627 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ 627 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
628 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ 628 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
629 --bin-path $(EXAMPLES_BIN_PATH) 629 --bin-path $(EXAMPLES_BIN_PATH)
630 exampletest: testdata 630 exampletest: testdata
631 else 631 else
632 exampletest exampletest-no-data-check: 632 exampletest exampletest-no-data-check:
633 @echo Unit tests must be enabled to make the exampletest target. 633 @echo Unit tests must be enabled to make the exampletest target.
634 endif 634 endif
OLDNEW
« no previous file with comments | « source/libvpx/examples.mk ('k') | source/libvpx/test/dct16x16_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698