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

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

Issue 181493009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 9 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 AdditionalIncludeDirectories="$incs" \ 364 AdditionalIncludeDirectories="$incs" \
365 PreprocessorDefinitions="WIN32;DEBUG;_CONSOLE;_CRT_S ECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \ 365 PreprocessorDefinitions="WIN32;DEBUG;_CONSOLE;_CRT_S ECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \
366 RuntimeLibrary="$debug_runtime" \ 366 RuntimeLibrary="$debug_runtime" \
367 WarningLevel="3" \ 367 WarningLevel="3" \
368 DebugInformationFormat="1" \ 368 DebugInformationFormat="1" \
369 $warn_64bit \ 369 $warn_64bit \
370 ;; 370 ;;
371 vpx) 371 vpx)
372 tag Tool \ 372 tag Tool \
373 Name="VCPreBuildEventTool" \ 373 Name="VCPreBuildEventTool" \
374 CommandLine="call obj_int_extract.bat $src_path_bare " \ 374 CommandLine="call obj_int_extract.bat $src_path_bare $plat_no_ws\\\$(ConfigurationName)" \
375 375
376 tag Tool \ 376 tag Tool \
377 Name="VCCLCompilerTool" \ 377 Name="VCCLCompilerTool" \
378 Optimization="0" \ 378 Optimization="0" \
379 AdditionalIncludeDirectories="$incs" \ 379 AdditionalIncludeDirectories="$incs" \
380 PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ 380 PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
381 RuntimeLibrary="$debug_runtime" \ 381 RuntimeLibrary="$debug_runtime" \
382 UsePrecompiledHeader="0" \ 382 UsePrecompiledHeader="0" \
383 WarningLevel="3" \ 383 WarningLevel="3" \
384 DebugInformationFormat="2" \ 384 DebugInformationFormat="2" \
(...skipping 20 matching lines...) Expand all
405 esac 405 esac
406 406
407 case "$proj_kind" in 407 case "$proj_kind" in
408 exe) 408 exe)
409 case "$target" in 409 case "$target" in
410 x86*) 410 x86*)
411 case "$name" in 411 case "$name" in
412 obj_int_extract) 412 obj_int_extract)
413 tag Tool \ 413 tag Tool \
414 Name="VCLinkerTool" \ 414 Name="VCLinkerTool" \
415 OutputFile="${name}.exe" \
416 GenerateDebugInformation="true" \ 415 GenerateDebugInformation="true" \
417 ;; 416 ;;
418 *) 417 *)
419 tag Tool \ 418 tag Tool \
420 Name="VCLinkerTool" \ 419 Name="VCLinkerTool" \
421 AdditionalDependencies="$debug_libs \$(NoInh erit)" \ 420 AdditionalDependencies="$debug_libs \$(NoInh erit)" \
422 AdditionalLibraryDirectories="$libdirs" \ 421 AdditionalLibraryDirectories="$libdirs" \
423 GenerateDebugInformation="true" \ 422 GenerateDebugInformation="true" \
424 ProgramDatabaseFile="\$(OutDir)/${name}.pdb" \ 423 ProgramDatabaseFile="\$(OutDir)/${name}.pdb" \
425 ;; 424 ;;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_ SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \ 471 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_ SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \
473 RuntimeLibrary="$release_runtime" \ 472 RuntimeLibrary="$release_runtime" \
474 UsePrecompiledHeader="0" \ 473 UsePrecompiledHeader="0" \
475 WarningLevel="3" \ 474 WarningLevel="3" \
476 DebugInformationFormat="0" \ 475 DebugInformationFormat="0" \
477 $warn_64bit \ 476 $warn_64bit \
478 ;; 477 ;;
479 vpx) 478 vpx)
480 tag Tool \ 479 tag Tool \
481 Name="VCPreBuildEventTool" \ 480 Name="VCPreBuildEventTool" \
482 CommandLine="call obj_int_extract.bat $src_path_bare " \ 481 CommandLine="call obj_int_extract.bat $src_path_bare $plat_no_ws\\\$(ConfigurationName)" \
483 482
484 tag Tool \ 483 tag Tool \
485 Name="VCCLCompilerTool" \ 484 Name="VCCLCompilerTool" \
486 Optimization="2" \ 485 Optimization="2" \
487 FavorSizeorSpeed="1" \ 486 FavorSizeorSpeed="1" \
488 AdditionalIncludeDirectories="$incs" \ 487 AdditionalIncludeDirectories="$incs" \
489 PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ 488 PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \
490 RuntimeLibrary="$release_runtime" \ 489 RuntimeLibrary="$release_runtime" \
491 UsePrecompiledHeader="0" \ 490 UsePrecompiledHeader="0" \
492 WarningLevel="3" \ 491 WarningLevel="3" \
(...skipping 22 matching lines...) Expand all
515 esac 514 esac
516 515
517 case "$proj_kind" in 516 case "$proj_kind" in
518 exe) 517 exe)
519 case "$target" in 518 case "$target" in
520 x86*) 519 x86*)
521 case "$name" in 520 case "$name" in
522 obj_int_extract) 521 obj_int_extract)
523 tag Tool \ 522 tag Tool \
524 Name="VCLinkerTool" \ 523 Name="VCLinkerTool" \
525 OutputFile="${name}.exe" \
526 GenerateDebugInformation="true" \ 524 GenerateDebugInformation="true" \
527 ;; 525 ;;
528 *) 526 *)
529 tag Tool \ 527 tag Tool \
530 Name="VCLinkerTool" \ 528 Name="VCLinkerTool" \
531 AdditionalDependencies="$libs \$(NoInherit)" \ 529 AdditionalDependencies="$libs \$(NoInherit)" \
532 AdditionalLibraryDirectories="$libdirs" \ 530 AdditionalLibraryDirectories="$libdirs" \
533 531
534 ;; 532 ;;
535 esac 533 esac
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} 581 sed -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile}
584 582
585 exit 583 exit
586 <!-- 584 <!--
587 TODO: Add any files not captured by filters. 585 TODO: Add any files not captured by filters.
588 <File 586 <File
589 RelativePath=".\ReadMe.txt" 587 RelativePath=".\ReadMe.txt"
590 > 588 >
591 </File> 589 </File>
592 --> 590 -->
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