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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 'target_name': 'whitelist_typefaces', | 407 'target_name': 'whitelist_typefaces', |
408 'type': 'executable', | 408 'type': 'executable', |
409 'sources': [ | 409 'sources': [ |
410 '../tools/whitelist_typefaces.cpp', | 410 '../tools/whitelist_typefaces.cpp', |
411 ], | 411 ], |
412 'dependencies': [ | 412 'dependencies': [ |
413 'skia_lib.gyp:skia_lib', | 413 'skia_lib.gyp:skia_lib', |
414 ], | 414 ], |
415 }, | 415 }, |
416 { | 416 { |
| 417 'target_name': 'thermal_manager', |
| 418 'type': 'static_library', |
| 419 'sources': [ |
| 420 '../tools/ThermalManager.cpp', |
| 421 ], |
| 422 'dependencies': [ |
| 423 'skia_lib.gyp:skia_lib', |
| 424 ], |
| 425 'direct_dependent_settings': { |
| 426 'include_dirs': [ '../tools', ], |
| 427 }, |
| 428 }, |
| 429 { |
417 'target_name': 'test_public_includes', | 430 'target_name': 'test_public_includes', |
418 'type': 'static_library', | 431 'type': 'static_library', |
419 # Ensure that our public headers don't have unused params so that clients | 432 # Ensure that our public headers don't have unused params so that clients |
420 # (e.g. Android) that include us can build with these warnings enabled | 433 # (e.g. Android) that include us can build with these warnings enabled |
421 'cflags!': [ '-Wno-unused-parameter' ], | 434 'cflags!': [ '-Wno-unused-parameter' ], |
422 'variables': { | 435 'variables': { |
423 'includes_to_test': [ | 436 'includes_to_test': [ |
424 '<(skia_include_path)/android', | 437 '<(skia_include_path)/android', |
425 '<(skia_include_path)/animator', | 438 '<(skia_include_path)/animator', |
426 '<(skia_include_path)/c', | 439 '<(skia_include_path)/c', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'flags.gyp:flags', | 582 'flags.gyp:flags', |
570 'skia_lib.gyp:skia_lib', | 583 'skia_lib.gyp:skia_lib', |
571 'resources', | 584 'resources', |
572 ], | 585 ], |
573 }, | 586 }, |
574 ], | 587 ], |
575 }, | 588 }, |
576 ], | 589 ], |
577 ], | 590 ], |
578 } | 591 } |
OLD | NEW |