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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'sources': [ | 76 'sources': [ |
77 '../tools/dump_record.cpp', | 77 '../tools/dump_record.cpp', |
78 '../tools/DumpRecord.cpp', | 78 '../tools/DumpRecord.cpp', |
79 ], | 79 ], |
80 'include_dirs': [ | 80 'include_dirs': [ |
81 '../include/private', | 81 '../include/private', |
82 '../src/core', | 82 '../src/core', |
83 ], | 83 ], |
84 'dependencies': [ | 84 'dependencies': [ |
85 'flags.gyp:flags', | 85 'flags.gyp:flags', |
86 'lazy_decode_bitmap', | |
87 'skia_lib.gyp:skia_lib', | 86 'skia_lib.gyp:skia_lib', |
88 ], | 87 ], |
89 }, | 88 }, |
90 { | 89 { |
91 'target_name': 'chrome_fuzz', | 90 'target_name': 'chrome_fuzz', |
92 'type': 'executable', | 91 'type': 'executable', |
93 'sources': [ | 92 'sources': [ |
94 '../tools/chrome_fuzz.cpp', | 93 '../tools/chrome_fuzz.cpp', |
95 ], | 94 ], |
96 'dependencies': [ | 95 'dependencies': [ |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 ], | 259 ], |
261 'include_dirs': [ | 260 'include_dirs': [ |
262 '../include/core', | 261 '../include/core', |
263 ], | 262 ], |
264 'dependencies': [ | 263 'dependencies': [ |
265 'flags.gyp:flags', | 264 'flags.gyp:flags', |
266 'skia_lib.gyp:skia_lib', | 265 'skia_lib.gyp:skia_lib', |
267 ], | 266 ], |
268 }, | 267 }, |
269 { | 268 { |
270 'target_name': 'lazy_decode_bitmap', | |
271 'type': 'static_library', | |
272 'sources': [ '../tools/LazyDecodeBitmap.cpp' ], | |
273 'include_dirs': [ | |
274 '../include/private', | |
275 '../src/core', | |
276 '../src/lazy', | |
277 ], | |
278 'dependencies': [ | |
279 'flags.gyp:flags', | |
280 'skia_lib.gyp:skia_lib' | |
281 ], | |
282 }, | |
283 { | |
284 'target_name': 'get_images_from_skps', | 269 'target_name': 'get_images_from_skps', |
285 'type': 'executable', | 270 'type': 'executable', |
286 'sources': [ | 271 'sources': [ |
287 '../tools/get_images_from_skps.cpp', | 272 '../tools/get_images_from_skps.cpp', |
288 ], | 273 ], |
289 'dependencies': [ | 274 'dependencies': [ |
290 'flags.gyp:flags', | 275 'flags.gyp:flags', |
291 'skia_lib.gyp:skia_lib', | 276 'skia_lib.gyp:skia_lib', |
292 ], | 277 ], |
293 }, | 278 }, |
294 { | 279 { |
295 'target_name': 'gpuveto', | 280 'target_name': 'gpuveto', |
296 'type': 'executable', | 281 'type': 'executable', |
297 'sources': [ | 282 'sources': [ |
298 '../tools/gpuveto.cpp', | 283 '../tools/gpuveto.cpp', |
299 ], | 284 ], |
300 'include_dirs': [ | 285 'include_dirs': [ |
301 '../include/private', | 286 '../include/private', |
302 '../src/core/', | 287 '../src/core/', |
303 '../src/images', | 288 '../src/images', |
304 ], | 289 ], |
305 'dependencies': [ | 290 'dependencies': [ |
306 'lazy_decode_bitmap', | |
307 'flags.gyp:flags', | 291 'flags.gyp:flags', |
308 'skia_lib.gyp:skia_lib', | 292 'skia_lib.gyp:skia_lib', |
309 ], | 293 ], |
310 }, | 294 }, |
311 { | 295 { |
312 'target_name': 'lua_app', | 296 'target_name': 'lua_app', |
313 'type': 'executable', | 297 'type': 'executable', |
314 'sources': [ | 298 'sources': [ |
315 '../tools/lua/lua_app.cpp', | 299 '../tools/lua/lua_app.cpp', |
316 '../src/utils/SkLua.cpp', | 300 '../src/utils/SkLua.cpp', |
(...skipping 21 matching lines...) Expand all Loading... |
338 '../src/utils/SkLuaCanvas.cpp', | 322 '../src/utils/SkLuaCanvas.cpp', |
339 '../src/utils/SkLua.cpp', | 323 '../src/utils/SkLua.cpp', |
340 ], | 324 ], |
341 'include_dirs': [ | 325 'include_dirs': [ |
342 '../include/private', | 326 '../include/private', |
343 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList | 327 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList |
344 '../src/gpu/', | 328 '../src/gpu/', |
345 '../src/core/', | 329 '../src/core/', |
346 ], | 330 ], |
347 'dependencies': [ | 331 'dependencies': [ |
348 'lazy_decode_bitmap', | |
349 'effects.gyp:effects', | 332 'effects.gyp:effects', |
350 'flags.gyp:flags', | 333 'flags.gyp:flags', |
351 'images.gyp:images', | 334 'images.gyp:images', |
352 'lua.gyp:lua', | 335 'lua.gyp:lua', |
353 'tools.gyp:picture_utils', | 336 'tools.gyp:picture_utils', |
354 'pdf.gyp:pdf', | 337 'pdf.gyp:pdf', |
355 'ports.gyp:ports', | 338 'ports.gyp:ports', |
356 'skia_lib.gyp:skia_lib', | 339 'skia_lib.gyp:skia_lib', |
357 ], | 340 ], |
358 }, | 341 }, |
(...skipping 13 matching lines...) Expand all Loading... |
372 ], | 355 ], |
373 }, | 356 }, |
374 }, | 357 }, |
375 { | 358 { |
376 'target_name': 'pinspect', | 359 'target_name': 'pinspect', |
377 'type': 'executable', | 360 'type': 'executable', |
378 'sources': [ | 361 'sources': [ |
379 '../tools/pinspect.cpp', | 362 '../tools/pinspect.cpp', |
380 ], | 363 ], |
381 'dependencies': [ | 364 'dependencies': [ |
382 'lazy_decode_bitmap', | |
383 'flags.gyp:flags', | 365 'flags.gyp:flags', |
384 'skia_lib.gyp:skia_lib', | 366 'skia_lib.gyp:skia_lib', |
385 ], | 367 ], |
386 }, | 368 }, |
387 { | 369 { |
388 'target_name': 'imgconv', | 370 'target_name': 'imgconv', |
389 'type': 'executable', | 371 'type': 'executable', |
390 'sources': [ | 372 'sources': [ |
391 '../tools/imgconv.cpp', | 373 '../tools/imgconv.cpp', |
392 ], | 374 ], |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 'flags.gyp:flags', | 598 'flags.gyp:flags', |
617 'skia_lib.gyp:skia_lib', | 599 'skia_lib.gyp:skia_lib', |
618 'resources', | 600 'resources', |
619 ], | 601 ], |
620 }, | 602 }, |
621 ], | 603 ], |
622 }, | 604 }, |
623 ], | 605 ], |
624 ], | 606 ], |
625 } | 607 } |
OLD | NEW |