| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 'skia_lib.gyp:skia_lib', | 344 'skia_lib.gyp:skia_lib', |
| 345 ], | 345 ], |
| 346 }, | 346 }, |
| 347 { | 347 { |
| 348 'target_name': 'picture_utils', | 348 'target_name': 'picture_utils', |
| 349 'type': 'static_library', | 349 'type': 'static_library', |
| 350 'sources': [ | 350 'sources': [ |
| 351 '../tools/picture_utils.cpp', | 351 '../tools/picture_utils.cpp', |
| 352 '../tools/picture_utils.h', | 352 '../tools/picture_utils.h', |
| 353 ], | 353 ], |
| 354 'include_dirs': [ |
| 355 '../src/core/', |
| 356 ], |
| 354 'dependencies': [ | 357 'dependencies': [ |
| 355 'skia_lib.gyp:skia_lib', | 358 'skia_lib.gyp:skia_lib', |
| 356 ], | 359 ], |
| 357 'direct_dependent_settings': { | 360 'direct_dependent_settings': { |
| 358 'include_dirs': [ | 361 'include_dirs': [ |
| 359 '../tools/', | 362 '../tools/', |
| 360 ], | 363 ], |
| 361 }, | 364 }, |
| 362 }, | 365 }, |
| 363 { | 366 { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 'pdf.gyp:pdf', | 610 'pdf.gyp:pdf', |
| 608 ], | 611 ], |
| 609 'defines': [ 'FIDDLE_BUILD_TEST' ], | 612 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 610 'link_settings': { 'libraries': [ '-lOSMesa' ], }, | 613 'link_settings': { 'libraries': [ '-lOSMesa' ], }, |
| 611 }, | 614 }, |
| 612 ], | 615 ], |
| 613 }, | 616 }, |
| 614 ], | 617 ], |
| 615 ], | 618 ], |
| 616 } | 619 } |
| OLD | NEW |