| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 ], | 47 ], |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'target_name': 'bitmap_region_decoder', | 51 'target_name': 'bitmap_region_decoder', |
| 52 'type': 'static_library', | 52 'type': 'static_library', |
| 53 'sources': [ | 53 'sources': [ |
| 54 '../tools/SkBitmapRegionCanvas.cpp', | 54 '../tools/SkBitmapRegionCanvas.cpp', |
| 55 '../tools/SkBitmapRegionCodec.cpp', |
| 55 '../tools/SkBitmapRegionDecoderInterface.cpp', | 56 '../tools/SkBitmapRegionDecoderInterface.cpp', |
| 56 '../tools/SkBitmapRegionSampler.cpp', | 57 '../tools/SkBitmapRegionSampler.cpp', |
| 57 ], | 58 ], |
| 58 'include_dirs': [ | 59 'include_dirs': [ |
| 59 '../include/private', | 60 '../include/private', |
| 60 '../src/codec', | 61 '../src/codec', |
| 61 ], | 62 ], |
| 62 'dependencies': [ | 63 'dependencies': [ |
| 63 'skia_lib.gyp:skia_lib', | 64 'skia_lib.gyp:skia_lib', |
| 64 ], | 65 ], |
| (...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 'flags.gyp:flags', | 761 'flags.gyp:flags', |
| 761 'skia_lib.gyp:skia_lib', | 762 'skia_lib.gyp:skia_lib', |
| 762 'resources', | 763 'resources', |
| 763 ], | 764 ], |
| 764 }, | 765 }, |
| 765 ], | 766 ], |
| 766 }, | 767 }, |
| 767 ], | 768 ], |
| 768 ], | 769 ], |
| 769 } | 770 } |
| OLD | NEW |