| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 'target_name': 'whitelist_typefaces', | 428 'target_name': 'whitelist_typefaces', |
| 429 'type': 'executable', | 429 'type': 'executable', |
| 430 'sources': [ | 430 'sources': [ |
| 431 '../tools/whitelist_typefaces.cpp', | 431 '../tools/whitelist_typefaces.cpp', |
| 432 ], | 432 ], |
| 433 'dependencies': [ | 433 'dependencies': [ |
| 434 'skia_lib.gyp:skia_lib', | 434 'skia_lib.gyp:skia_lib', |
| 435 ], | 435 ], |
| 436 }, | 436 }, |
| 437 { | 437 { |
| 438 'target_name': 'thermal_manager', |
| 439 'type': 'static_library', |
| 440 'sources': [ |
| 441 '../tools/ThermalManager.cpp', |
| 442 ], |
| 443 'dependencies': [ |
| 444 'skia_lib.gyp:skia_lib', |
| 445 ], |
| 446 'direct_dependent_settings': { |
| 447 'include_dirs': [ '../tools', ], |
| 448 }, |
| 449 }, |
| 450 { |
| 438 'target_name': 'test_public_includes', | 451 'target_name': 'test_public_includes', |
| 439 'type': 'static_library', | 452 'type': 'static_library', |
| 440 # Ensure that our public headers don't have unused params so that clients | 453 # Ensure that our public headers don't have unused params so that clients |
| 441 # (e.g. Android) that include us can build with these warnings enabled | 454 # (e.g. Android) that include us can build with these warnings enabled |
| 442 'cflags!': [ '-Wno-unused-parameter' ], | 455 'cflags!': [ '-Wno-unused-parameter' ], |
| 443 'variables': { | 456 'variables': { |
| 444 'includes_to_test': [ | 457 'includes_to_test': [ |
| 445 '<(skia_include_path)/android', | 458 '<(skia_include_path)/android', |
| 446 '<(skia_include_path)/animator', | 459 '<(skia_include_path)/animator', |
| 447 '<(skia_include_path)/c', | 460 '<(skia_include_path)/c', |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 'flags.gyp:flags', | 603 'flags.gyp:flags', |
| 591 'skia_lib.gyp:skia_lib', | 604 'skia_lib.gyp:skia_lib', |
| 592 'resources', | 605 'resources', |
| 593 ], | 606 ], |
| 594 }, | 607 }, |
| 595 ], | 608 ], |
| 596 }, | 609 }, |
| 597 ], | 610 ], |
| 598 ], | 611 ], |
| 599 } | 612 } |
| OLD | NEW |