Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: gyp/tools.gyp

Issue 1402863002: Implementation of SkBitmapRegionDecoder using SkAndroidCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@split1
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | tools/SkBitmapRegionCanvas.cpp » ('j') | tools/SkBitmapRegionCanvas.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698