| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'sources': [ | 75 'sources': [ |
| 76 '../tools/dump_record.cpp', | 76 '../tools/dump_record.cpp', |
| 77 '../tools/DumpRecord.cpp', | 77 '../tools/DumpRecord.cpp', |
| 78 ], | 78 ], |
| 79 'include_dirs': [ | 79 'include_dirs': [ |
| 80 '../include/private', | 80 '../include/private', |
| 81 '../src/core', | 81 '../src/core', |
| 82 ], | 82 ], |
| 83 'dependencies': [ | 83 'dependencies': [ |
| 84 'flags.gyp:flags', | 84 'flags.gyp:flags', |
| 85 'lazy_decode_bitmap', | |
| 86 'skia_lib.gyp:skia_lib', | 85 'skia_lib.gyp:skia_lib', |
| 87 ], | 86 ], |
| 88 }, | 87 }, |
| 89 { | 88 { |
| 90 'target_name': 'chrome_fuzz', | 89 'target_name': 'chrome_fuzz', |
| 91 'type': 'executable', | 90 'type': 'executable', |
| 92 'sources': [ | 91 'sources': [ |
| 93 '../tools/chrome_fuzz.cpp', | 92 '../tools/chrome_fuzz.cpp', |
| 94 ], | 93 ], |
| 95 'dependencies': [ | 94 'dependencies': [ |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 ], | 257 ], |
| 259 'include_dirs': [ | 258 'include_dirs': [ |
| 260 '../include/core', | 259 '../include/core', |
| 261 ], | 260 ], |
| 262 'dependencies': [ | 261 'dependencies': [ |
| 263 'flags.gyp:flags', | 262 'flags.gyp:flags', |
| 264 'skia_lib.gyp:skia_lib', | 263 'skia_lib.gyp:skia_lib', |
| 265 ], | 264 ], |
| 266 }, | 265 }, |
| 267 { | 266 { |
| 268 'target_name': 'lazy_decode_bitmap', | |
| 269 'type': 'static_library', | |
| 270 'sources': [ '../tools/LazyDecodeBitmap.cpp' ], | |
| 271 'include_dirs': [ | |
| 272 '../include/private', | |
| 273 '../src/core', | |
| 274 '../src/lazy', | |
| 275 ], | |
| 276 'dependencies': [ | |
| 277 'flags.gyp:flags', | |
| 278 'skia_lib.gyp:skia_lib' | |
| 279 ], | |
| 280 }, | |
| 281 { | |
| 282 'target_name': 'gpuveto', | 267 'target_name': 'gpuveto', |
| 283 'type': 'executable', | 268 'type': 'executable', |
| 284 'sources': [ | 269 'sources': [ |
| 285 '../tools/gpuveto.cpp', | 270 '../tools/gpuveto.cpp', |
| 286 ], | 271 ], |
| 287 'include_dirs': [ | 272 'include_dirs': [ |
| 288 '../include/private', | 273 '../include/private', |
| 289 '../src/core/', | 274 '../src/core/', |
| 290 '../src/images', | 275 '../src/images', |
| 291 ], | 276 ], |
| 292 'dependencies': [ | 277 'dependencies': [ |
| 293 'lazy_decode_bitmap', | |
| 294 'flags.gyp:flags', | 278 'flags.gyp:flags', |
| 295 'skia_lib.gyp:skia_lib', | 279 'skia_lib.gyp:skia_lib', |
| 296 ], | 280 ], |
| 297 }, | 281 }, |
| 298 { | 282 { |
| 299 'target_name': 'lua_app', | 283 'target_name': 'lua_app', |
| 300 'type': 'executable', | 284 'type': 'executable', |
| 301 'sources': [ | 285 'sources': [ |
| 302 '../tools/lua/lua_app.cpp', | 286 '../tools/lua/lua_app.cpp', |
| 303 '../src/utils/SkLua.cpp', | 287 '../src/utils/SkLua.cpp', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 325 '../src/utils/SkLuaCanvas.cpp', | 309 '../src/utils/SkLuaCanvas.cpp', |
| 326 '../src/utils/SkLua.cpp', | 310 '../src/utils/SkLua.cpp', |
| 327 ], | 311 ], |
| 328 'include_dirs': [ | 312 'include_dirs': [ |
| 329 '../include/private', | 313 '../include/private', |
| 330 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList | 314 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList |
| 331 '../src/gpu/', | 315 '../src/gpu/', |
| 332 '../src/core/', | 316 '../src/core/', |
| 333 ], | 317 ], |
| 334 'dependencies': [ | 318 'dependencies': [ |
| 335 'lazy_decode_bitmap', | |
| 336 'effects.gyp:effects', | 319 'effects.gyp:effects', |
| 337 'flags.gyp:flags', | 320 'flags.gyp:flags', |
| 338 'images.gyp:images', | 321 'images.gyp:images', |
| 339 'lua.gyp:lua', | 322 'lua.gyp:lua', |
| 340 'tools.gyp:picture_utils', | 323 'tools.gyp:picture_utils', |
| 341 'pdf.gyp:pdf', | 324 'pdf.gyp:pdf', |
| 342 'ports.gyp:ports', | 325 'ports.gyp:ports', |
| 343 'skia_lib.gyp:skia_lib', | 326 'skia_lib.gyp:skia_lib', |
| 344 ], | 327 ], |
| 345 }, | 328 }, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 359 ], | 342 ], |
| 360 }, | 343 }, |
| 361 }, | 344 }, |
| 362 { | 345 { |
| 363 'target_name': 'pinspect', | 346 'target_name': 'pinspect', |
| 364 'type': 'executable', | 347 'type': 'executable', |
| 365 'sources': [ | 348 'sources': [ |
| 366 '../tools/pinspect.cpp', | 349 '../tools/pinspect.cpp', |
| 367 ], | 350 ], |
| 368 'dependencies': [ | 351 'dependencies': [ |
| 369 'lazy_decode_bitmap', | |
| 370 'flags.gyp:flags', | 352 'flags.gyp:flags', |
| 371 'skia_lib.gyp:skia_lib', | 353 'skia_lib.gyp:skia_lib', |
| 372 ], | 354 ], |
| 373 }, | 355 }, |
| 374 { | 356 { |
| 375 'target_name': 'imgconv', | 357 'target_name': 'imgconv', |
| 376 'type': 'executable', | 358 'type': 'executable', |
| 377 'sources': [ | 359 'sources': [ |
| 378 '../tools/imgconv.cpp', | 360 '../tools/imgconv.cpp', |
| 379 ], | 361 ], |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 'flags.gyp:flags', | 572 'flags.gyp:flags', |
| 591 'skia_lib.gyp:skia_lib', | 573 'skia_lib.gyp:skia_lib', |
| 592 'resources', | 574 'resources', |
| 593 ], | 575 ], |
| 594 }, | 576 }, |
| 595 ], | 577 ], |
| 596 }, | 578 }, |
| 597 ], | 579 ], |
| 598 ], | 580 ], |
| 599 } | 581 } |
| OLD | NEW |