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

Side by Side Diff: gyp/tools.gyp

Issue 181903002: Revert "Revert of Add getReducedClipStack to lua canvas (https://codereview.chromium.org/180283004/… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: fix no gpu build Created 6 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 | « no previous file | include/core/SkCanvas.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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 ], 182 ],
183 }, 183 },
184 184
185 { 185 {
186 'target_name': 'lua_app', 186 'target_name': 'lua_app',
187 'type': 'executable', 187 'type': 'executable',
188 'sources': [ 188 'sources': [
189 '../tools/lua/lua_app.cpp', 189 '../tools/lua/lua_app.cpp',
190 '../src/utils/SkLua.cpp', 190 '../src/utils/SkLua.cpp',
191 ], 191 ],
192 'include_dirs': [
193 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList
194 '../src/gpu/',
195 '../src/core/',
196 ],
192 'dependencies': [ 197 'dependencies': [
193 'effects.gyp:effects', 198 'effects.gyp:effects',
194 'images.gyp:images', 199 'images.gyp:images',
195 'lua.gyp:lua', 200 'lua.gyp:lua',
196 'pdf.gyp:pdf', 201 'pdf.gyp:pdf',
197 'ports.gyp:ports', 202 'ports.gyp:ports',
198 'skia_lib.gyp:skia_lib', 203 'skia_lib.gyp:skia_lib',
199 'utils.gyp:utils', 204 'utils.gyp:utils',
200 ], 205 ],
201 }, 206 },
202 { 207 {
203 'target_name': 'lua_pictures', 208 'target_name': 'lua_pictures',
204 'type': 'executable', 209 'type': 'executable',
205 'sources': [ 210 'sources': [
206 '../tools/lua/lua_pictures.cpp', 211 '../tools/lua/lua_pictures.cpp',
207 '../src/utils/SkLuaCanvas.cpp', 212 '../src/utils/SkLuaCanvas.cpp',
208 '../src/utils/SkLua.cpp', 213 '../src/utils/SkLua.cpp',
209 ], 214 ],
215 'include_dirs': [
216 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList
217 '../src/gpu/',
218 '../src/core/',
219 ],
210 'dependencies': [ 220 'dependencies': [
211 'effects.gyp:effects', 221 'effects.gyp:effects',
212 'flags.gyp:flags', 222 'flags.gyp:flags',
213 'images.gyp:images', 223 'images.gyp:images',
214 'lua.gyp:lua', 224 'lua.gyp:lua',
215 'tools.gyp:picture_renderer', 225 'tools.gyp:picture_renderer',
216 'tools.gyp:picture_utils', 226 'tools.gyp:picture_utils',
217 'pdf.gyp:pdf', 227 'pdf.gyp:pdf',
218 'ports.gyp:ports', 228 'ports.gyp:ports',
219 'skia_lib.gyp:skia_lib', 229 'skia_lib.gyp:skia_lib',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 'target_name': 'sklua', 475 'target_name': 'sklua',
466 'product_name': 'skia', 476 'product_name': 'skia',
467 'product_prefix': '', 477 'product_prefix': '',
468 'product_dir': '<(PRODUCT_DIR)/', 478 'product_dir': '<(PRODUCT_DIR)/',
469 'type': 'shared_library', 479 'type': 'shared_library',
470 'sources': [ 480 'sources': [
471 '../src/utils/SkLuaCanvas.cpp', 481 '../src/utils/SkLuaCanvas.cpp',
472 '../src/utils/SkLua.cpp', 482 '../src/utils/SkLua.cpp',
473 ], 483 ],
474 'include_dirs': [ 484 'include_dirs': [
485 # Lua exposes GrReduceClip which in turn requires src/core for SkT LList
486 '../src/gpu/',
487 '../src/core/',
475 '../third_party/lua/src/', 488 '../third_party/lua/src/',
476 ], 489 ],
477 'dependencies': [ 490 'dependencies': [
478 'lua.gyp:lua', 491 'lua.gyp:lua',
479 'pdf.gyp:pdf', 492 'pdf.gyp:pdf',
480 'skia_lib.gyp:skia_lib', 493 'skia_lib.gyp:skia_lib',
481 ], 494 ],
482 'conditions': [ 495 'conditions': [
483 ['skia_os != "win"', 496 ['skia_os != "win"',
484 { 497 {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 'type': 'executable', 530 'type': 'executable',
518 'sources': [ 531 'sources': [
519 '../tools/win_lcid.cpp', 532 '../tools/win_lcid.cpp',
520 ], 533 ],
521 }, 534 },
522 ], 535 ],
523 }, 536 },
524 ], 537 ],
525 ], 538 ],
526 } 539 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698