| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ], | 380 ], |
| 381 }, | 381 }, |
| 382 { | 382 { |
| 383 'target_name': 'picture_utils', | 383 'target_name': 'picture_utils', |
| 384 'type': 'static_library', | 384 'type': 'static_library', |
| 385 'sources': [ | 385 'sources': [ |
| 386 '../tools/picture_utils.cpp', | 386 '../tools/picture_utils.cpp', |
| 387 '../tools/picture_utils.h', | 387 '../tools/picture_utils.h', |
| 388 ], | 388 ], |
| 389 'include_dirs': [ | 389 'include_dirs': [ |
| 390 '../include/private', |
| 390 '../src/core/', | 391 '../src/core/', |
| 391 ], | 392 ], |
| 392 'dependencies': [ | 393 'dependencies': [ |
| 393 'skia_lib.gyp:skia_lib', | 394 'skia_lib.gyp:skia_lib', |
| 394 ], | 395 ], |
| 395 'direct_dependent_settings': { | 396 'direct_dependent_settings': { |
| 396 'include_dirs': [ | 397 'include_dirs': [ |
| 397 '../tools/', | 398 '../tools/', |
| 398 ], | 399 ], |
| 399 }, | 400 }, |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 'pdf.gyp:pdf', | 675 'pdf.gyp:pdf', |
| 675 'gputest.gyp:osmesa', | 676 'gputest.gyp:osmesa', |
| 676 ], | 677 ], |
| 677 'defines': [ 'FIDDLE_BUILD_TEST' ], | 678 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 678 }, | 679 }, |
| 679 ], | 680 ], |
| 680 }, | 681 }, |
| 681 ], | 682 ], |
| 682 ], | 683 ], |
| 683 } | 684 } |
| OLD | NEW |