| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 'flags.gyp:flags', | 354 'flags.gyp:flags', |
| 355 'images.gyp:images', | 355 'images.gyp:images', |
| 356 'lua.gyp:lua', | 356 'lua.gyp:lua', |
| 357 'tools.gyp:picture_utils', | 357 'tools.gyp:picture_utils', |
| 358 'pdf.gyp:pdf', | 358 'pdf.gyp:pdf', |
| 359 'ports.gyp:ports', | 359 'ports.gyp:ports', |
| 360 'skia_lib.gyp:skia_lib', | 360 'skia_lib.gyp:skia_lib', |
| 361 ], | 361 ], |
| 362 }, | 362 }, |
| 363 { | 363 { |
| 364 'target_name': 'picture_renderer', | |
| 365 'type': 'static_library', | |
| 366 'sources': [ | |
| 367 '../tools/PictureRenderer.h', | |
| 368 '../tools/PictureRenderer.cpp', | |
| 369 ], | |
| 370 'include_dirs': [ | |
| 371 '../include/private', | |
| 372 '../src/core', | |
| 373 '../src/images', | |
| 374 '../src/lazy', | |
| 375 '../src/pipe/utils/', | |
| 376 '../src/utils/', | |
| 377 ], | |
| 378 'dependencies': [ | |
| 379 'lazy_decode_bitmap', | |
| 380 'flags.gyp:flags', | |
| 381 'jsoncpp.gyp:jsoncpp', | |
| 382 'skia_lib.gyp:skia_lib', | |
| 383 'tools.gyp:picture_utils', | |
| 384 ], | |
| 385 'conditions': [ | |
| 386 ['skia_gpu == 1', | |
| 387 { | |
| 388 'include_dirs' : [ | |
| 389 '../src/gpu', | |
| 390 ], | |
| 391 'dependencies': [ | |
| 392 'gputest.gyp:skgputest', | |
| 393 ], | |
| 394 'export_dependent_settings': [ | |
| 395 'gputest.gyp:skgputest', | |
| 396 ], | |
| 397 }, | |
| 398 ], | |
| 399 ], | |
| 400 }, | |
| 401 { | |
| 402 'target_name': 'picture_utils', | 364 'target_name': 'picture_utils', |
| 403 'type': 'static_library', | 365 'type': 'static_library', |
| 404 'sources': [ | 366 'sources': [ |
| 405 '../tools/picture_utils.cpp', | 367 '../tools/picture_utils.cpp', |
| 406 '../tools/picture_utils.h', | 368 '../tools/picture_utils.h', |
| 407 ], | 369 ], |
| 408 'dependencies': [ | 370 'dependencies': [ |
| 409 'skia_lib.gyp:skia_lib', | 371 'skia_lib.gyp:skia_lib', |
| 410 ], | 372 ], |
| 411 'direct_dependent_settings': { | 373 'direct_dependent_settings': { |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 'flags.gyp:flags', | 587 'flags.gyp:flags', |
| 626 'skia_lib.gyp:skia_lib', | 588 'skia_lib.gyp:skia_lib', |
| 627 'resources', | 589 'resources', |
| 628 ], | 590 ], |
| 629 }, | 591 }, |
| 630 ], | 592 ], |
| 631 }, | 593 }, |
| 632 ], | 594 ], |
| 633 ], | 595 ], |
| 634 } | 596 } |
| OLD | NEW |