| 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 '../tools/skhello.cpp', | 262 '../tools/skhello.cpp', |
| 263 ], | 263 ], |
| 264 }, | 264 }, |
| 265 { | 265 { |
| 266 'target_name': 'skpinfo', | 266 'target_name': 'skpinfo', |
| 267 'type': 'executable', | 267 'type': 'executable', |
| 268 'sources': [ | 268 'sources': [ |
| 269 '../tools/skpinfo.cpp', | 269 '../tools/skpinfo.cpp', |
| 270 ], | 270 ], |
| 271 'include_dirs': [ | 271 'include_dirs': [ |
| 272 '../include/private', |
| 272 '../src/core/', | 273 '../src/core/', |
| 273 ], | 274 ], |
| 274 'dependencies': [ | 275 'dependencies': [ |
| 275 'flags.gyp:flags', | 276 'flags.gyp:flags', |
| 276 'skia_lib.gyp:skia_lib', | 277 'skia_lib.gyp:skia_lib', |
| 277 ], | 278 ], |
| 278 }, | 279 }, |
| 279 { | 280 { |
| 280 # Superseded by dm, should be removed. | 281 # Superseded by dm, should be removed. |
| 281 'target_name': 'skp2svg', | 282 'target_name': 'skp2svg', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 }, | 411 }, |
| 411 { | 412 { |
| 412 'target_name': 'dump_record', | 413 'target_name': 'dump_record', |
| 413 'type': 'executable', | 414 'type': 'executable', |
| 414 'sources': [ | 415 'sources': [ |
| 415 '../tools/dump_record.cpp', | 416 '../tools/dump_record.cpp', |
| 416 '../tools/DumpRecord.cpp', | 417 '../tools/DumpRecord.cpp', |
| 417 '../tools/LazyDecodeBitmap.cpp', | 418 '../tools/LazyDecodeBitmap.cpp', |
| 418 ], | 419 ], |
| 419 'include_dirs': [ | 420 'include_dirs': [ |
| 421 '../include/private', |
| 420 '../src/core/', | 422 '../src/core/', |
| 421 '../src/images', | 423 '../src/images', |
| 422 '../src/lazy', | 424 '../src/lazy', |
| 423 ], | 425 ], |
| 424 'dependencies': [ | 426 'dependencies': [ |
| 425 'timer', | 427 'timer', |
| 426 'flags.gyp:flags', | 428 'flags.gyp:flags', |
| 427 'skia_lib.gyp:skia_lib', | 429 'skia_lib.gyp:skia_lib', |
| 428 ], | 430 ], |
| 429 }, | 431 }, |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 ], | 571 ], |
| 570 'dependencies': [ | 572 'dependencies': [ |
| 571 'flags.gyp:flags', | 573 'flags.gyp:flags', |
| 572 'skia_lib.gyp:skia_lib', | 574 'skia_lib.gyp:skia_lib', |
| 573 ], | 575 ], |
| 574 }, | 576 }, |
| 575 { | 577 { |
| 576 'target_name': 'filter', | 578 'target_name': 'filter', |
| 577 'type': 'executable', | 579 'type': 'executable', |
| 578 'include_dirs' : [ | 580 'include_dirs' : [ |
| 581 '../include/private', |
| 579 '../src/core', | 582 '../src/core', |
| 580 '../src/utils/debugger', | 583 '../src/utils/debugger', |
| 581 ], | 584 ], |
| 582 'sources': [ | 585 'sources': [ |
| 583 '../tools/filtermain.cpp', | 586 '../tools/filtermain.cpp', |
| 584 '../src/utils/debugger/SkDrawCommand.h', | 587 '../src/utils/debugger/SkDrawCommand.h', |
| 585 '../src/utils/debugger/SkDrawCommand.cpp', | 588 '../src/utils/debugger/SkDrawCommand.cpp', |
| 586 '../src/utils/debugger/SkDebugCanvas.h', | 589 '../src/utils/debugger/SkDebugCanvas.h', |
| 587 '../src/utils/debugger/SkDebugCanvas.cpp', | 590 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 588 '../src/utils/debugger/SkObjectParser.h', | 591 '../src/utils/debugger/SkObjectParser.h', |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 'flags.gyp:flags', | 775 'flags.gyp:flags', |
| 773 'skia_lib.gyp:skia_lib', | 776 'skia_lib.gyp:skia_lib', |
| 774 'resources', | 777 'resources', |
| 775 ], | 778 ], |
| 776 }, | 779 }, |
| 777 ], | 780 ], |
| 778 }, | 781 }, |
| 779 ], | 782 ], |
| 780 ], | 783 ], |
| 781 } | 784 } |
| OLD | NEW |