| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/SkBitmapRegionCodec.cpp', |
| 56 '../tools/SkBitmapRegionDecoder.cpp', | 56 '../tools/SkBitmapRegionDecoder.cpp', |
| 57 '../tools/SkBitmapRegionSampler.cpp', | |
| 58 ], | 57 ], |
| 59 'include_dirs': [ | 58 'include_dirs': [ |
| 60 '../include/private', | 59 '../include/private', |
| 61 '../src/codec', | 60 '../src/codec', |
| 62 ], | 61 ], |
| 63 'dependencies': [ | 62 'dependencies': [ |
| 64 'skia_lib.gyp:skia_lib', | 63 'skia_lib.gyp:skia_lib', |
| 65 ], | 64 ], |
| 66 'direct_dependent_settings': { | 65 'direct_dependent_settings': { |
| 67 'include_dirs': [ | 66 'include_dirs': [ |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 'flags.gyp:flags', | 737 'flags.gyp:flags', |
| 739 'skia_lib.gyp:skia_lib', | 738 'skia_lib.gyp:skia_lib', |
| 740 'resources', | 739 'resources', |
| 741 ], | 740 ], |
| 742 }, | 741 }, |
| 743 ], | 742 ], |
| 744 }, | 743 }, |
| 745 ], | 744 ], |
| 746 ], | 745 ], |
| 747 } | 746 } |
| OLD | NEW |