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