| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build various tools. | 5 # GYP file to build various tools. |
| 6 # | 6 # |
| 7 # To build on Linux: | 7 # To build on Linux: |
| 8 # ./gyp_skia tools.gyp && make tools | 8 # ./gyp_skia tools.gyp && make tools |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 ['skia_win_debuggers_path and skia_os == "win"', | 512 ['skia_win_debuggers_path and skia_os == "win"', |
| 513 { | 513 { |
| 514 'dependencies': [ | 514 'dependencies': [ |
| 515 'tools.gyp:win_dbghelp', | 515 'tools.gyp:win_dbghelp', |
| 516 ], | 516 ], |
| 517 }, | 517 }, |
| 518 ], | 518 ], |
| 519 # VS static libraries don't have a linker option. We must set a global | 519 # VS static libraries don't have a linker option. We must set a global |
| 520 # project linker option, or add it to each executable. | 520 # project linker option, or add it to each executable. |
| 521 ['skia_win_debuggers_path and skia_os == "win" and ' | 521 ['skia_win_debuggers_path and skia_os == "win" and ' |
| 522 'skia_arch_width == 64', | 522 'skia_arch_type == "x86_64"', |
| 523 { | 523 { |
| 524 'msvs_settings': { | 524 'msvs_settings': { |
| 525 'VCLinkerTool': { | 525 'VCLinkerTool': { |
| 526 'AdditionalDependencies': [ | 526 'AdditionalDependencies': [ |
| 527 '<(skia_win_debuggers_path)/x64/DbgHelp.lib', | 527 '<(skia_win_debuggers_path)/x64/DbgHelp.lib', |
| 528 ], | 528 ], |
| 529 }, | 529 }, |
| 530 }, | 530 }, |
| 531 }, | 531 }, |
| 532 ], | 532 ], |
| 533 ['skia_win_debuggers_path and skia_os == "win" and ' | 533 ['skia_win_debuggers_path and skia_os == "win" and ' |
| 534 'skia_arch_width == 32', | 534 'skia_arch_type == "x86"', |
| 535 { | 535 { |
| 536 'msvs_settings': { | 536 'msvs_settings': { |
| 537 'VCLinkerTool': { | 537 'VCLinkerTool': { |
| 538 'AdditionalDependencies': [ | 538 'AdditionalDependencies': [ |
| 539 '<(skia_win_debuggers_path)/DbgHelp.lib', | 539 '<(skia_win_debuggers_path)/DbgHelp.lib', |
| 540 ], | 540 ], |
| 541 }, | 541 }, |
| 542 }, | 542 }, |
| 543 }, | 543 }, |
| 544 ], | 544 ], |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 'flags.gyp:flags', | 783 'flags.gyp:flags', |
| 784 'skia_lib.gyp:skia_lib', | 784 'skia_lib.gyp:skia_lib', |
| 785 'resources', | 785 'resources', |
| 786 ], | 786 ], |
| 787 }, | 787 }, |
| 788 ], | 788 ], |
| 789 }, | 789 }, |
| 790 ], | 790 ], |
| 791 ], | 791 ], |
| 792 } | 792 } |
| OLD | NEW |