| OLD | NEW | 
|---|
| 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 358                             Name="VCCLCompilerTool" \ | 358                             Name="VCCLCompilerTool" \ | 
| 359                             Optimization="0" \ | 359                             Optimization="0" \ | 
| 360                             AdditionalIncludeDirectories="$incs" \ | 360                             AdditionalIncludeDirectories="$incs" \ | 
| 361                             PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 361                             PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 
| 362                             RuntimeLibrary="$debug_runtime" \ | 362                             RuntimeLibrary="$debug_runtime" \ | 
| 363                             UsePrecompiledHeader="0" \ | 363                             UsePrecompiledHeader="0" \ | 
| 364                             WarningLevel="3" \ | 364                             WarningLevel="3" \ | 
| 365                             DebugInformationFormat="1" \ | 365                             DebugInformationFormat="1" \ | 
| 366                             Detect64BitPortabilityProblems="true" \ | 366                             Detect64BitPortabilityProblems="true" \ | 
| 367 | 367 | 
| 368                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" 
     Debug="1" | 368                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" 
     Debug="true" | 
| 369                     ;; | 369                     ;; | 
| 370                     *) | 370                     *) | 
| 371                         tag Tool \ | 371                         tag Tool \ | 
| 372                             Name="VCCLCompilerTool" \ | 372                             Name="VCCLCompilerTool" \ | 
| 373                             Optimization="0" \ | 373                             Optimization="0" \ | 
| 374                             AdditionalIncludeDirectories="$incs" \ | 374                             AdditionalIncludeDirectories="$incs" \ | 
| 375                             PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 375                             PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 
| 376                             RuntimeLibrary="$debug_runtime" \ | 376                             RuntimeLibrary="$debug_runtime" \ | 
| 377                             UsePrecompiledHeader="0" \ | 377                             UsePrecompiledHeader="0" \ | 
| 378                             WarningLevel="3" \ | 378                             WarningLevel="3" \ | 
| 379                             DebugInformationFormat="1" \ | 379                             DebugInformationFormat="1" \ | 
| 380                             Detect64BitPortabilityProblems="true" \ | 380                             Detect64BitPortabilityProblems="true" \ | 
| 381 | 381 | 
| 382                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" 
     Debug="1" | 382                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" 
     Debug="true" | 
| 383                     ;; | 383                     ;; | 
| 384                 esac | 384                 esac | 
| 385             ;; | 385             ;; | 
| 386         esac | 386         esac | 
| 387 | 387 | 
| 388         case "$proj_kind" in | 388         case "$proj_kind" in | 
| 389             exe) | 389             exe) | 
| 390                 case "$target" in | 390                 case "$target" in | 
| 391                     x86*) | 391                     x86*) | 
| 392                         case "$name" in | 392                         case "$name" in | 
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 440             ConfigurationType="$vs_ConfigurationType" \ | 440             ConfigurationType="$vs_ConfigurationType" \ | 
| 441             CharacterSet="1" \ | 441             CharacterSet="1" \ | 
| 442             WholeProgramOptimization="0" \ | 442             WholeProgramOptimization="0" \ | 
| 443 | 443 | 
| 444         case "$target" in | 444         case "$target" in | 
| 445             x86*) | 445             x86*) | 
| 446                 case "$name" in | 446                 case "$name" in | 
| 447                     obj_int_extract) | 447                     obj_int_extract) | 
| 448                         tag Tool \ | 448                         tag Tool \ | 
| 449                             Name="VCCLCompilerTool" \ | 449                             Name="VCCLCompilerTool" \ | 
|  | 450                             Optimization="2" \ | 
|  | 451                             FavorSizeorSpeed="1" \ | 
| 450                             AdditionalIncludeDirectories="$incs" \ | 452                             AdditionalIncludeDirectories="$incs" \ | 
| 451                             PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_
     SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \ | 453                             PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_
     SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE" \ | 
| 452                             RuntimeLibrary="$release_runtime" \ | 454                             RuntimeLibrary="$release_runtime" \ | 
| 453                             UsePrecompiledHeader="0" \ | 455                             UsePrecompiledHeader="0" \ | 
| 454                             WarningLevel="3" \ | 456                             WarningLevel="3" \ | 
| 455                             Detect64BitPortabilityProblems="true" \ | 457                             Detect64BitPortabilityProblems="true" \ | 
| 456                             DebugInformationFormat="0" \ | 458                             DebugInformationFormat="0" \ | 
| 457                     ;; | 459                     ;; | 
| 458                     vpx) | 460                     vpx) | 
| 459                         tag Tool \ | 461                         tag Tool \ | 
| 460                             Name="VCPreBuildEventTool" \ | 462                             Name="VCPreBuildEventTool" \ | 
| 461                             CommandLine="call obj_int_extract.bat $src_path_bare
     " \ | 463                             CommandLine="call obj_int_extract.bat $src_path_bare
     " \ | 
| 462 | 464 | 
| 463                         tag Tool \ | 465                         tag Tool \ | 
| 464                             Name="VCCLCompilerTool" \ | 466                             Name="VCCLCompilerTool" \ | 
|  | 467                             Optimization="2" \ | 
|  | 468                             FavorSizeorSpeed="1" \ | 
| 465                             AdditionalIncludeDirectories="$incs" \ | 469                             AdditionalIncludeDirectories="$incs" \ | 
| 466                             PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 470                             PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 
| 467                             RuntimeLibrary="$release_runtime" \ | 471                             RuntimeLibrary="$release_runtime" \ | 
| 468                             UsePrecompiledHeader="0" \ | 472                             UsePrecompiledHeader="0" \ | 
| 469                             WarningLevel="3" \ | 473                             WarningLevel="3" \ | 
| 470                             DebugInformationFormat="0" \ | 474                             DebugInformationFormat="0" \ | 
| 471                             Detect64BitPortabilityProblems="true" \ | 475                             Detect64BitPortabilityProblems="true" \ | 
| 472 | 476 | 
| 473                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" | 477                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" | 
| 474                     ;; | 478                     ;; | 
| 475                     *) | 479                     *) | 
| 476                         tag Tool \ | 480                         tag Tool \ | 
| 477                             Name="VCCLCompilerTool" \ | 481                             Name="VCCLCompilerTool" \ | 
| 478                             AdditionalIncludeDirectories="$incs" \ | 482                             AdditionalIncludeDirectories="$incs" \ | 
|  | 483                             Optimization="2" \ | 
|  | 484                             FavorSizeorSpeed="1" \ | 
| 479                             PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 485                             PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO
     _WARNINGS;_CRT_SECURE_NO_DEPRECATE;$defines" \ | 
| 480                             RuntimeLibrary="$release_runtime" \ | 486                             RuntimeLibrary="$release_runtime" \ | 
| 481                             UsePrecompiledHeader="0" \ | 487                             UsePrecompiledHeader="0" \ | 
| 482                             WarningLevel="3" \ | 488                             WarningLevel="3" \ | 
| 483                             DebugInformationFormat="0" \ | 489                             DebugInformationFormat="0" \ | 
| 484                             Detect64BitPortabilityProblems="true" \ | 490                             Detect64BitPortabilityProblems="true" \ | 
| 485 | 491 | 
| 486                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" | 492                         $uses_asm && tag Tool Name="YASM"  IncludePaths="$incs" | 
| 487                     ;; | 493                     ;; | 
| 488                 esac | 494                 esac | 
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 558     sed  -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} | 564     sed  -e '/"/s;\([^ "]\)/;\1\\;g' > ${outfile} | 
| 559 | 565 | 
| 560 exit | 566 exit | 
| 561 <!-- | 567 <!-- | 
| 562 TODO: Add any files not captured by filters. | 568 TODO: Add any files not captured by filters. | 
| 563                 <File | 569                 <File | 
| 564                         RelativePath=".\ReadMe.txt" | 570                         RelativePath=".\ReadMe.txt" | 
| 565                         > | 571                         > | 
| 566                 </File> | 572                 </File> | 
| 567 --> | 573 --> | 
| OLD | NEW | 
|---|