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

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

Issue 756673003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/libs.mk ('k') | source/libvpx/test/convolve_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
11 # libvpx reverse dependencies (targets that depend on libvpx) 11 # libvpx reverse dependencies (targets that depend on libvpx)
12 VPX_NONDEPS=$(addsuffix .$(VCPROJ_SFX),vpx gtest obj_int_extract) 12 VPX_NONDEPS=$(addsuffix .$(VCPROJ_SFX),vpx gtest)
13 VPX_RDEPS=$(foreach vcp,\ 13 VPX_RDEPS=$(foreach vcp,\
14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx) 14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
15 15
16 vpx.sln: $(wildcard *.$(VCPROJ_SFX)) 16 vpx.sln: $(wildcard *.$(VCPROJ_SFX))
17 @echo " [CREATE] $@" 17 @echo " [CREATE] $@"
18 $(SRC_PATH_BARE)/build/make/gen_msvs_sln.sh \ 18 $(SRC_PATH_BARE)/build/make/gen_msvs_sln.sh \
19 $(if $(filter vpx.$(VCPROJ_SFX),$^),$(VPX_RDEPS)) \ 19 $(if $(filter vpx.$(VCPROJ_SFX),$^),$(VPX_RDEPS)) \
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \ 20 --dep=test_libvpx:gtest \
22 --ver=$(CONFIG_VS_VERSION)\ 21 --ver=$(CONFIG_VS_VERSION)\
23 --out=$@ $^ 22 --out=$@ $^
24 vpx.sln.mk: vpx.sln 23 vpx.sln.mk: vpx.sln
25 @true 24 @true
26 25
27 PROJECTS-yes += vpx.sln vpx.sln.mk 26 PROJECTS-yes += vpx.sln vpx.sln.mk
28 -include vpx.sln.mk 27 -include vpx.sln.mk
29 28
30 # Always install this file, as it is an unconditional post-build rule. 29 # Always install this file, as it is an unconditional post-build rule.
31 INSTALL_MAPS += src/% $(SRC_PATH_BARE)/% 30 INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
32 INSTALL-SRCS-yes += $(target).mk 31 INSTALL-SRCS-yes += $(target).mk
OLDNEW
« no previous file with comments | « source/libvpx/libs.mk ('k') | source/libvpx/test/convolve_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698