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

Side by Side Diff: gyp/tools.gyp

Issue 12433020: Improvements/additions to SkImageCache/SkLazyPixelRef. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Respond to comments. Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « gyp/ports.gyp ('k') | include/lazy/SkBitmapFactory.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 # Building on other platforms not tested yet. 6 # Building on other platforms not tested yet.
7 # 7 #
8 { 8 {
9 'includes': [ 9 'includes': [
10 'apptype_console.gypi', 10 'apptype_console.gypi',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'sources': [ 93 'sources': [
94 '../tools/render_pictures_main.cpp', 94 '../tools/render_pictures_main.cpp',
95 ], 95 ],
96 'include_dirs': [ 96 'include_dirs': [
97 '../src/pipe/utils/', 97 '../src/pipe/utils/',
98 ], 98 ],
99 'dependencies': [ 99 'dependencies': [
100 'skia_base_libs.gyp:skia_base_libs', 100 'skia_base_libs.gyp:skia_base_libs',
101 'tools.gyp:picture_renderer', 101 'tools.gyp:picture_renderer',
102 'tools.gyp:picture_utils', 102 'tools.gyp:picture_utils',
103 'ports.gyp:ports',
103 ], 104 ],
104 }, 105 },
105 { 106 {
106 'target_name': 'bench_pictures', 107 'target_name': 'bench_pictures',
107 'type': 'executable', 108 'type': 'executable',
108 'sources': [ 109 'sources': [
109 '../bench/SkBenchLogger.h', 110 '../bench/SkBenchLogger.h',
110 '../bench/SkBenchLogger.cpp', 111 '../bench/SkBenchLogger.cpp',
111 '../bench/TimerData.h', 112 '../bench/TimerData.h',
112 '../bench/TimerData.cpp', 113 '../bench/TimerData.cpp',
113 '../tools/bench_pictures_main.cpp', 114 '../tools/bench_pictures_main.cpp',
114 '../tools/PictureBenchmark.cpp', 115 '../tools/PictureBenchmark.cpp',
115 ], 116 ],
116 'include_dirs': [ 117 'include_dirs': [
117 '../bench', 118 '../bench',
118 '../src/lazy/', 119 '../src/lazy/',
119 ], 120 ],
120 'dependencies': [ 121 'dependencies': [
121 'skia_base_libs.gyp:skia_base_libs', 122 'skia_base_libs.gyp:skia_base_libs',
122 'effects.gyp:effects', 123 'effects.gyp:effects',
123 'tools.gyp:picture_utils', 124 'tools.gyp:picture_utils',
124 'tools.gyp:picture_renderer', 125 'tools.gyp:picture_renderer',
125 'bench.gyp:bench_timer', 126 'bench.gyp:bench_timer',
127 'ports.gyp:ports',
126 ], 128 ],
127 }, 129 },
128 { 130 {
129 'target_name': 'picture_renderer', 131 'target_name': 'picture_renderer',
130 'type': 'static_library', 132 'type': 'static_library',
131 'sources': [ 133 'sources': [
132 '../tools/PictureRenderer.h', 134 '../tools/PictureRenderer.h',
133 '../tools/PictureRenderer.cpp', 135 '../tools/PictureRenderer.cpp',
134 '../tools/PictureRenderingFlags.h', 136 '../tools/PictureRenderingFlags.h',
135 '../tools/PictureRenderingFlags.cpp', 137 '../tools/PictureRenderingFlags.cpp',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 }, 290 },
289 ], 291 ],
290 ], 292 ],
291 } 293 }
292 294
293 # Local Variables: 295 # Local Variables:
294 # tab-width:2 296 # tab-width:2
295 # indent-tabs-mode:nil 297 # indent-tabs-mode:nil
296 # End: 298 # End:
297 # vim: set expandtab tabstop=2 shiftwidth=2: 299 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/ports.gyp ('k') | include/lazy/SkBitmapFactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698