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

Side by Side Diff: source/libvpx/build/make/gen_msvs_proj.sh

Issue 168343002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: libvpx: Pull from upstream Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/build/make/configure.sh ('k') | source/libvpx/build/make/gen_msvs_vcxproj.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 ## 2 ##
3 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. 3 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 ## 4 ##
5 ## Use of this source code is governed by a BSD-style license 5 ## Use of this source code is governed by a BSD-style license
6 ## that can be found in the LICENSE file in the root of the source 6 ## that can be found in the LICENSE file in the root of the source
7 ## tree. An additional intellectual property rights grant can be found 7 ## tree. An additional intellectual property rights grant can be found
8 ## in the file PATENTS. All contributing project authors may 8 ## in the file PATENTS. All contributing project authors may
9 ## be found in the AUTHORS file in the root of the source tree. 9 ## be found in the AUTHORS file in the root of the source tree.
10 ## 10 ##
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 148
149 if [ "$pat" == "asm" ] && $asm_use_custom_step; then 149 if [ "$pat" == "asm" ] && $asm_use_custom_step; then
150 for plat in "${platforms[@]}"; do 150 for plat in "${platforms[@]}"; do
151 for cfg in Debug Release; do 151 for cfg in Debug Release; do
152 open_tag FileConfiguration \ 152 open_tag FileConfiguration \
153 Name="${cfg}|${plat}" \ 153 Name="${cfg}|${plat}" \
154 154
155 tag Tool \ 155 tag Tool \
156 Name="VCCustomBuildTool" \ 156 Name="VCCustomBuildTool" \
157 Description="Assembling \$(InputFileName)" \ 157 Description="Assembling \$(InputFileName)" \
158 CommandLine="$(eval echo \$asm_${cfg}_cmdline) - o \$(IntDir)$objf" \ 158 CommandLine="$(eval echo \$asm_${cfg}_cmdline) - o \$(IntDir)\\$objf" \
159 Outputs="\$(IntDir)$objf" \ 159 Outputs="\$(IntDir)\\$objf" \
160 160
161 close_tag FileConfiguration 161 close_tag FileConfiguration
162 done 162 done
163 done 163 done
164 fi 164 fi
165 if [ "$pat" == "c" ] || [ "$pat" == "cc" ] ; then 165 if [ "$pat" == "c" ] || [ "$pat" == "cc" ] ; then
166 for plat in "${platforms[@]}"; do 166 for plat in "${platforms[@]}"; do
167 for cfg in Debug Release; do 167 for cfg in Debug Release; do
168 open_tag FileConfiguration \ 168 open_tag FileConfiguration \
169 Name="${cfg}|${plat}" \ 169 Name="${cfg}|${plat}" \
170 170
171 tag Tool \ 171 tag Tool \
172 Name="VCCLCompilerTool" \ 172 Name="VCCLCompilerTool" \
173 ObjectFile="\$(IntDir)$objf" \ 173 ObjectFile="\$(IntDir)\\$objf" \
174 174
175 close_tag FileConfiguration 175 close_tag FileConfiguration
176 done 176 done
177 done 177 done
178 fi 178 fi
179 close_tag File 179 close_tag File
180 180
181 break 181 break
182 fi 182 fi
183 done 183 done
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} 583 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile}
584 584
585 exit 585 exit
586 <!-- 586 <!--
587 TODO: Add any files not captured by filters. 587 TODO: Add any files not captured by filters.
588 <File 588 <File
589 RelativePath=".\ReadMe.txt" 589 RelativePath=".\ReadMe.txt"
590 > 590 >
591 </File> 591 </File>
592 --> 592 -->
OLDNEW
« no previous file with comments | « source/libvpx/build/make/configure.sh ('k') | source/libvpx/build/make/gen_msvs_vcxproj.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698