| 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 { | 428 { |
| 429 'target_name': 'proc_stats', | 429 'target_name': 'proc_stats', |
| 430 'type': 'static_library', | 430 'type': 'static_library', |
| 431 'sources': [ | 431 'sources': [ |
| 432 '../tools/ProcStats.h', | 432 '../tools/ProcStats.h', |
| 433 '../tools/ProcStats.cpp', | 433 '../tools/ProcStats.cpp', |
| 434 ], | 434 ], |
| 435 'direct_dependent_settings': { | 435 'direct_dependent_settings': { |
| 436 'include_dirs': [ '../tools', ], | 436 'include_dirs': [ '../tools', ], |
| 437 }, | 437 }, |
| 438 'dependencies': [ |
| 439 'skia_lib.gyp:skia_lib', |
| 440 ], |
| 438 }, | 441 }, |
| 439 { | 442 { |
| 440 'target_name': 'url_data_manager', | 443 'target_name': 'url_data_manager', |
| 441 'type': 'static_library', | 444 'type': 'static_library', |
| 442 'sources': [ | 445 'sources': [ |
| 443 '../tools/UrlDataManager.h', | 446 '../tools/UrlDataManager.h', |
| 444 '../tools/UrlDataManager.cpp', | 447 '../tools/UrlDataManager.cpp', |
| 445 ], | 448 ], |
| 446 'dependencies': [ | 449 'dependencies': [ |
| 447 'skia_lib.gyp:skia_lib', | 450 'skia_lib.gyp:skia_lib', |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 'pdf.gyp:pdf', | 695 'pdf.gyp:pdf', |
| 693 'gputest.gyp:osmesa', | 696 'gputest.gyp:osmesa', |
| 694 ], | 697 ], |
| 695 'defines': [ 'FIDDLE_BUILD_TEST' ], | 698 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 696 }, | 699 }, |
| 697 ], | 700 ], |
| 698 }, | 701 }, |
| 699 ], | 702 ], |
| 700 ], | 703 ], |
| 701 } | 704 } |
| OLD | NEW |