| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 'direct_dependent_settings': { | 437 'direct_dependent_settings': { |
| 438 'include_dirs': [ | 438 'include_dirs': [ |
| 439 '../include/private', | 439 '../include/private', |
| 440 '../tools', | 440 '../tools', |
| 441 ], | 441 ], |
| 442 }, | 442 }, |
| 443 }, | 443 }, |
| 444 { | 444 { |
| 445 'target_name': 'using_skia_and_harfbuzz', | 445 'target_name': 'using_skia_and_harfbuzz', |
| 446 'type': 'executable', | 446 'type': 'executable', |
| 447 'sources': [ '../tools/using_skia_and_harfbuzz.cpp' ], | 447 'sources': [ |
| 448 '../tools/using_skia_and_harfbuzz.cpp', |
| 449 '../tools/SkShaper.cpp', |
| 450 ], |
| 448 'dependencies': [ | 451 'dependencies': [ |
| 449 'skia_lib.gyp:skia_lib', | 452 'skia_lib.gyp:skia_lib', |
| 450 'pdf.gyp:pdf', | 453 'pdf.gyp:pdf', |
| 451 'harfbuzz.gyp:harfbuzz', | 454 'harfbuzz.gyp:harfbuzz', |
| 452 ], | 455 ], |
| 453 'cflags': [ '-w', ], | 456 'cflags': [ '-w', ], |
| 454 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0', }, }, | 457 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0', }, }, |
| 455 'xcode_settings': { 'WARNING_CFLAGS': [ '-w', ], }, | 458 'xcode_settings': { 'WARNING_CFLAGS': [ '-w', ], }, |
| 456 }, | 459 }, |
| 457 { | 460 { |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 'pdf.gyp:pdf', | 677 'pdf.gyp:pdf', |
| 675 'gputest.gyp:osmesa', | 678 'gputest.gyp:osmesa', |
| 676 ], | 679 ], |
| 677 'defines': [ 'FIDDLE_BUILD_TEST' ], | 680 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 678 }, | 681 }, |
| 679 ], | 682 ], |
| 680 }, | 683 }, |
| 681 ], | 684 ], |
| 682 ], | 685 ], |
| 683 } | 686 } |
| OLD | NEW |