| 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', | |
| 391 '../src/core/', | 390 '../src/core/', |
| 392 ], | 391 ], |
| 393 'dependencies': [ | 392 'dependencies': [ |
| 394 'skia_lib.gyp:skia_lib', | 393 'skia_lib.gyp:skia_lib', |
| 395 ], | 394 ], |
| 396 'direct_dependent_settings': { | 395 'direct_dependent_settings': { |
| 397 'include_dirs': [ | 396 'include_dirs': [ |
| 398 '../tools/', | 397 '../tools/', |
| 399 ], | 398 ], |
| 400 }, | 399 }, |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 'pdf.gyp:pdf', | 674 'pdf.gyp:pdf', |
| 676 'gputest.gyp:osmesa', | 675 'gputest.gyp:osmesa', |
| 677 ], | 676 ], |
| 678 'defines': [ 'FIDDLE_BUILD_TEST' ], | 677 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 679 }, | 678 }, |
| 680 ], | 679 ], |
| 681 }, | 680 }, |
| 682 ], | 681 ], |
| 683 ], | 682 ], |
| 684 } | 683 } |
| OLD | NEW |