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

Side by Side Diff: gyp/tools.gyp

Issue 12440067: Change the name of SkFlags to SkCommandLineFlags. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: ParseCommandLine -> Parse 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/flags.gyp ('k') | tools/PictureRenderingFlags.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 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 '../tools/render_pictures_main.cpp', 91 '../tools/render_pictures_main.cpp',
92 ], 92 ],
93 'include_dirs': [ 93 'include_dirs': [
94 '../src/pipe/utils/', 94 '../src/pipe/utils/',
95 ], 95 ],
96 'dependencies': [ 96 'dependencies': [
97 'skia_base_libs.gyp:skia_base_libs', 97 'skia_base_libs.gyp:skia_base_libs',
98 'tools.gyp:picture_renderer', 98 'tools.gyp:picture_renderer',
99 'tools.gyp:picture_utils', 99 'tools.gyp:picture_utils',
100 'ports.gyp:ports', 100 'ports.gyp:ports',
101 'flags.gyp:flags',
101 ], 102 ],
102 }, 103 },
103 { 104 {
104 'target_name': 'bench_pictures', 105 'target_name': 'bench_pictures',
105 'type': 'executable', 106 'type': 'executable',
106 'sources': [ 107 'sources': [
107 '../bench/SkBenchLogger.h', 108 '../bench/SkBenchLogger.h',
108 '../bench/SkBenchLogger.cpp', 109 '../bench/SkBenchLogger.cpp',
109 '../bench/TimerData.h', 110 '../bench/TimerData.h',
110 '../bench/TimerData.cpp', 111 '../bench/TimerData.cpp',
111 '../tools/bench_pictures_main.cpp', 112 '../tools/bench_pictures_main.cpp',
112 '../tools/PictureBenchmark.cpp', 113 '../tools/PictureBenchmark.cpp',
113 ], 114 ],
114 'include_dirs': [ 115 'include_dirs': [
115 '../bench', 116 '../bench',
116 '../src/lazy/', 117 '../src/lazy/',
117 ], 118 ],
118 'dependencies': [ 119 'dependencies': [
119 'skia_base_libs.gyp:skia_base_libs', 120 'skia_base_libs.gyp:skia_base_libs',
120 'effects.gyp:effects', 121 'effects.gyp:effects',
121 'tools.gyp:picture_utils', 122 'tools.gyp:picture_utils',
122 'tools.gyp:picture_renderer', 123 'tools.gyp:picture_renderer',
123 'bench.gyp:bench_timer', 124 'bench.gyp:bench_timer',
124 'ports.gyp:ports', 125 'ports.gyp:ports',
126 'flags.gyp:flags',
125 ], 127 ],
126 }, 128 },
127 { 129 {
128 'target_name': 'picture_renderer', 130 'target_name': 'picture_renderer',
129 'type': 'static_library', 131 'type': 'static_library',
130 'sources': [ 132 'sources': [
131 '../tools/PictureRenderer.h', 133 '../tools/PictureRenderer.h',
132 '../tools/PictureRenderer.cpp', 134 '../tools/PictureRenderer.cpp',
133 '../tools/PictureRenderingFlags.h', 135 '../tools/PictureRenderingFlags.h',
134 '../tools/PictureRenderingFlags.cpp', 136 '../tools/PictureRenderingFlags.cpp',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 }, 288 },
287 ], 289 ],
288 ], 290 ],
289 } 291 }
290 292
291 # Local Variables: 293 # Local Variables:
292 # tab-width:2 294 # tab-width:2
293 # indent-tabs-mode:nil 295 # indent-tabs-mode:nil
294 # End: 296 # End:
295 # vim: set expandtab tabstop=2 shiftwidth=2: 297 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/flags.gyp ('k') | tools/PictureRenderingFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698