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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 ], | 348 ], |
349 }, | 349 }, |
350 { | 350 { |
351 'target_name': 'picture_utils', | 351 'target_name': 'picture_utils', |
352 'type': 'static_library', | 352 'type': 'static_library', |
353 'sources': [ | 353 'sources': [ |
354 '../tools/picture_utils.cpp', | 354 '../tools/picture_utils.cpp', |
355 '../tools/picture_utils.h', | 355 '../tools/picture_utils.h', |
356 ], | 356 ], |
357 'include_dirs': [ | 357 'include_dirs': [ |
| 358 '../include/private', |
358 '../src/core/', | 359 '../src/core/', |
359 ], | 360 ], |
360 'dependencies': [ | 361 'dependencies': [ |
361 'skia_lib.gyp:skia_lib', | 362 'skia_lib.gyp:skia_lib', |
362 ], | 363 ], |
363 'direct_dependent_settings': { | 364 'direct_dependent_settings': { |
364 'include_dirs': [ | 365 'include_dirs': [ |
365 '../tools/', | 366 '../tools/', |
366 ], | 367 ], |
367 }, | 368 }, |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 'pdf.gyp:pdf', | 643 'pdf.gyp:pdf', |
643 'gputest.gyp:osmesa', | 644 'gputest.gyp:osmesa', |
644 ], | 645 ], |
645 'defines': [ 'FIDDLE_BUILD_TEST' ], | 646 'defines': [ 'FIDDLE_BUILD_TEST' ], |
646 }, | 647 }, |
647 ], | 648 ], |
648 }, | 649 }, |
649 ], | 650 ], |
650 ], | 651 ], |
651 } | 652 } |
OLD | NEW |