| OLD | NEW | 
|---|
| 1 # GYP file to build various tools. | 1 # GYP file to build various tools. | 
| 2 # | 2 # | 
| 3 # To build on Linux: | 3 # To build on Linux: | 
| 4 #  ./gyp_skia tools.gyp && make tools | 4 #  ./gyp_skia tools.gyp && make tools | 
| 5 # | 5 # | 
| 6 { | 6 { | 
| 7   'includes': [ | 7   'includes': [ | 
| 8     'apptype_console.gypi', | 8     'apptype_console.gypi', | 
| 9   ], | 9   ], | 
| 10   'targets': [ | 10   'targets': [ | 
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 469       'type': 'static_library', | 469       'type': 'static_library', | 
| 470       'sources': [ | 470       'sources': [ | 
| 471         '../tools/picture_utils.cpp', | 471         '../tools/picture_utils.cpp', | 
| 472         '../tools/picture_utils.h', | 472         '../tools/picture_utils.h', | 
| 473       ], | 473       ], | 
| 474       'dependencies': [ | 474       'dependencies': [ | 
| 475         'skia_lib.gyp:skia_lib', | 475         'skia_lib.gyp:skia_lib', | 
| 476       ], | 476       ], | 
| 477       'direct_dependent_settings': { | 477       'direct_dependent_settings': { | 
| 478         'include_dirs': [ | 478         'include_dirs': [ | 
| 479         '../tools/', | 479           '../tools/', | 
| 480         ], | 480         ], | 
| 481       }, | 481       }, | 
| 482     }, | 482     }, | 
| 483     { | 483     { | 
| 484       'target_name': 'pinspect', | 484       'target_name': 'pinspect', | 
| 485       'type': 'executable', | 485       'type': 'executable', | 
| 486       'sources': [ | 486       'sources': [ | 
| 487         '../tools/pinspect.cpp', | 487         '../tools/pinspect.cpp', | 
| 488       ], | 488       ], | 
| 489       'dependencies': [ | 489       'dependencies': [ | 
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 619             'type': 'executable', | 619             'type': 'executable', | 
| 620             'sources': [ | 620             'sources': [ | 
| 621               '../tools/win_lcid.cpp', | 621               '../tools/win_lcid.cpp', | 
| 622             ], | 622             ], | 
| 623           }, | 623           }, | 
| 624         ], | 624         ], | 
| 625       }, | 625       }, | 
| 626     ], | 626     ], | 
| 627   ], | 627   ], | 
| 628 } | 628 } | 
| OLD | NEW | 
|---|