| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 'type': 'static_library', | 397 'type': 'static_library', |
| 398 'sources': [ | 398 'sources': [ |
| 399 '../tools/ProcStats.h', | 399 '../tools/ProcStats.h', |
| 400 '../tools/ProcStats.cpp', | 400 '../tools/ProcStats.cpp', |
| 401 ], | 401 ], |
| 402 'direct_dependent_settings': { | 402 'direct_dependent_settings': { |
| 403 'include_dirs': [ '../tools', ], | 403 'include_dirs': [ '../tools', ], |
| 404 }, | 404 }, |
| 405 }, | 405 }, |
| 406 { | 406 { |
| 407 'target_name': 'url_data_manager', |
| 408 'type': 'static_library', |
| 409 'sources': [ |
| 410 '../tools/UrlDataManager.h', |
| 411 '../tools/UrlDataManager.cpp', |
| 412 ], |
| 413 'dependencies': [ |
| 414 'skia_lib.gyp:skia_lib', |
| 415 ], |
| 416 'include_dirs': [ |
| 417 '../include/private', |
| 418 '../src/core', |
| 419 ], |
| 420 'direct_dependent_settings': { |
| 421 'include_dirs': [ |
| 422 '../include/private', |
| 423 '../tools', |
| 424 ], |
| 425 }, |
| 426 }, |
| 427 { |
| 407 'target_name': 'whitelist_typefaces', | 428 'target_name': 'whitelist_typefaces', |
| 408 'type': 'executable', | 429 'type': 'executable', |
| 409 'sources': [ | 430 'sources': [ |
| 410 '../tools/whitelist_typefaces.cpp', | 431 '../tools/whitelist_typefaces.cpp', |
| 411 ], | 432 ], |
| 412 'dependencies': [ | 433 'dependencies': [ |
| 413 'skia_lib.gyp:skia_lib', | 434 'skia_lib.gyp:skia_lib', |
| 414 ], | 435 ], |
| 415 }, | 436 }, |
| 416 { | 437 { |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 'flags.gyp:flags', | 590 'flags.gyp:flags', |
| 570 'skia_lib.gyp:skia_lib', | 591 'skia_lib.gyp:skia_lib', |
| 571 'resources', | 592 'resources', |
| 572 ], | 593 ], |
| 573 }, | 594 }, |
| 574 ], | 595 ], |
| 575 }, | 596 }, |
| 576 ], | 597 ], |
| 577 ], | 598 ], |
| 578 } | 599 } |
| OLD | NEW |