| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/SkBitmapRegionDecoderInterface.cpp', | 59 '../tools/SkBitmapRegionDecoderInterface.cpp', |
| 60 '../tools/SkBitmapRegionSampler.cpp', | 60 '../tools/SkBitmapRegionSampler.cpp', |
| 61 ], | 61 ], |
| 62 'include_dirs': [ | 62 'include_dirs': [ |
| 63 '../include/private' | 63 '../include/private', |
| 64 '../src/codec', |
| 64 ], | 65 ], |
| 65 'dependencies': [ | 66 'dependencies': [ |
| 66 'skia_lib.gyp:skia_lib', | 67 'skia_lib.gyp:skia_lib', |
| 67 ], | 68 ], |
| 68 }, | 69 }, |
| 69 { | 70 { |
| 70 'target_name': 'chrome_fuzz', | 71 'target_name': 'chrome_fuzz', |
| 71 'type': 'executable', | 72 'type': 'executable', |
| 72 'sources': [ | 73 'sources': [ |
| 73 '../tools/chrome_fuzz.cpp', | 74 '../tools/chrome_fuzz.cpp', |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 'flags.gyp:flags', | 852 'flags.gyp:flags', |
| 852 'skia_lib.gyp:skia_lib', | 853 'skia_lib.gyp:skia_lib', |
| 853 'resources', | 854 'resources', |
| 854 ], | 855 ], |
| 855 }, | 856 }, |
| 856 ], | 857 ], |
| 857 }, | 858 }, |
| 858 ], | 859 ], |
| 859 ], | 860 ], |
| 860 } | 861 } |
| OLD | NEW |