| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ], | 49 ], |
| 50 }, | 50 }, |
| 51 ], | 51 ], |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 { | 54 { |
| 55 'target_name': 'bitmap_region_decoder', | 55 'target_name': 'bitmap_region_decoder', |
| 56 'type': 'static_library', | 56 'type': 'static_library', |
| 57 'sources': [ | 57 'sources': [ |
| 58 '../tools/SkBitmapRegionCanvas.cpp', | 58 '../tools/SkBitmapRegionCanvas.cpp', |
| 59 '../tools/SkBitmapRegionCodec.cpp', |
| 59 '../tools/SkBitmapRegionDecoderInterface.cpp', | 60 '../tools/SkBitmapRegionDecoderInterface.cpp', |
| 60 '../tools/SkBitmapRegionSampler.cpp', | 61 '../tools/SkBitmapRegionSampler.cpp', |
| 61 ], | 62 ], |
| 62 'include_dirs': [ | 63 'include_dirs': [ |
| 63 '../include/private', | 64 '../include/private', |
| 64 '../src/codec', | 65 '../src/codec', |
| 65 ], | 66 ], |
| 66 'dependencies': [ | 67 'dependencies': [ |
| 67 'skia_lib.gyp:skia_lib', | 68 'skia_lib.gyp:skia_lib', |
| 68 ], | 69 ], |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 'flags.gyp:flags', | 853 'flags.gyp:flags', |
| 853 'skia_lib.gyp:skia_lib', | 854 'skia_lib.gyp:skia_lib', |
| 854 'resources', | 855 'resources', |
| 855 ], | 856 ], |
| 856 }, | 857 }, |
| 857 ], | 858 ], |
| 858 }, | 859 }, |
| 859 ], | 860 ], |
| 860 ], | 861 ], |
| 861 } | 862 } |
| OLD | NEW |