| 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 18 matching lines...) Expand all Loading... |
| 29 'imgconv', | 29 'imgconv', |
| 30 'pinspect', | 30 'pinspect', |
| 31 'render_pdfs', | 31 'render_pdfs', |
| 32 'render_pictures', | 32 'render_pictures', |
| 33 'skdiff', | 33 'skdiff', |
| 34 'skhello', | 34 'skhello', |
| 35 'skp2svg', | 35 'skp2svg', |
| 36 'skpdiff', | 36 'skpdiff', |
| 37 'skpinfo', | 37 'skpinfo', |
| 38 'skpmaker', | 38 'skpmaker', |
| 39 'imgslice', |
| 39 'test_image_decoder', | 40 'test_image_decoder', |
| 40 'test_public_includes', | 41 'test_public_includes', |
| 41 'whitelist_typefaces', | 42 'whitelist_typefaces', |
| 42 ], | 43 ], |
| 43 'conditions': [ | 44 'conditions': [ |
| 44 ['skia_shared_lib', | 45 ['skia_shared_lib', |
| 45 { | 46 { |
| 46 'dependencies': [ | 47 'dependencies': [ |
| 47 'sklua', # This can only be built if skia is built as a shared lib
rary | 48 'sklua', # This can only be built if skia is built as a shared lib
rary |
| 48 ], | 49 ], |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'include_dirs': [ | 304 'include_dirs': [ |
| 304 '../include/private', | 305 '../include/private', |
| 305 '../src/core/', | 306 '../src/core/', |
| 306 ], | 307 ], |
| 307 'dependencies': [ | 308 'dependencies': [ |
| 308 'flags.gyp:flags', | 309 'flags.gyp:flags', |
| 309 'skia_lib.gyp:skia_lib', | 310 'skia_lib.gyp:skia_lib', |
| 310 ], | 311 ], |
| 311 }, | 312 }, |
| 312 { | 313 { |
| 314 'target_name': 'imgslice', |
| 315 'type': 'executable', |
| 316 'sources': [ |
| 317 '../tools/imgslice.cpp', |
| 318 ], |
| 319 'include_dirs': [ |
| 320 '../include/core', |
| 321 ], |
| 322 'dependencies': [ |
| 323 'flags.gyp:flags', |
| 324 'skia_lib.gyp:skia_lib', |
| 325 ], |
| 326 }, |
| 327 { |
| 313 'target_name': 'flatten', | 328 'target_name': 'flatten', |
| 314 'type': 'executable', | 329 'type': 'executable', |
| 315 'sources': [ | 330 'sources': [ |
| 316 '../tools/flatten.cpp', | 331 '../tools/flatten.cpp', |
| 317 ], | 332 ], |
| 318 'dependencies': [ | 333 'dependencies': [ |
| 319 'skia_lib.gyp:skia_lib', | 334 'skia_lib.gyp:skia_lib', |
| 320 ], | 335 ], |
| 321 }, | 336 }, |
| 322 { | 337 { |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 'flags.gyp:flags', | 852 'flags.gyp:flags', |
| 838 'skia_lib.gyp:skia_lib', | 853 'skia_lib.gyp:skia_lib', |
| 839 'resources', | 854 'resources', |
| 840 ], | 855 ], |
| 841 }, | 856 }, |
| 842 ], | 857 ], |
| 843 }, | 858 }, |
| 844 ], | 859 ], |
| 845 ], | 860 ], |
| 846 } | 861 } |
| OLD | NEW |