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 { |
11 'includes': [ | 11 'includes': [ |
12 'apptype_console.gypi', | 12 'apptype_console.gypi', |
13 ], | 13 ], |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 # Build all executable targets defined below. | 16 # Build all executable targets defined below. |
17 'target_name': 'tools', | 17 'target_name': 'tools', |
18 'type': 'none', | 18 'type': 'none', |
19 'dependencies': [ | 19 'dependencies': [ |
20 'chrome_fuzz', | 20 'chrome_fuzz', |
21 'dump_record', | 21 'dump_record', |
22 'get_images_from_skps', | 22 'get_images_from_skps', |
| 23 'get_current_monitor_profile', |
23 'gpuveto', | 24 'gpuveto', |
24 'imgblur', | 25 'imgblur', |
25 'imgslice', | 26 'imgslice', |
26 'lua_app', | 27 'lua_app', |
27 'lua_pictures', | 28 'lua_pictures', |
28 'pinspect', | 29 'pinspect', |
29 'skdiff', | 30 'skdiff', |
30 'skhello', | 31 'skhello', |
31 'skpinfo', | 32 'skpinfo', |
32 'skpmaker', | 33 'skpmaker', |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 '../src/core', | 311 '../src/core', |
311 '../include/private', | 312 '../include/private', |
312 ], | 313 ], |
313 'dependencies': [ | 314 'dependencies': [ |
314 'flags.gyp:flags', | 315 'flags.gyp:flags', |
315 'jsoncpp.gyp:jsoncpp', | 316 'jsoncpp.gyp:jsoncpp', |
316 'skia_lib.gyp:skia_lib', | 317 'skia_lib.gyp:skia_lib', |
317 ], | 318 ], |
318 }, | 319 }, |
319 { | 320 { |
| 321 'target_name': 'get_current_monitor_profile', |
| 322 'type': 'executable', |
| 323 'sources': [ |
| 324 '../tools/get_current_monitor_profile.cpp', |
| 325 ], |
| 326 'include_dirs': [ |
| 327 '../src/core', |
| 328 '../include/private', |
| 329 ], |
| 330 'dependencies': [ |
| 331 'flags.gyp:flags', |
| 332 'skia_lib.gyp:skia_lib', |
| 333 ], |
| 334 }, |
| 335 { |
320 'target_name': 'gpuveto', | 336 'target_name': 'gpuveto', |
321 'type': 'executable', | 337 'type': 'executable', |
322 'sources': [ | 338 'sources': [ |
323 '../tools/gpuveto.cpp', | 339 '../tools/gpuveto.cpp', |
324 ], | 340 ], |
325 'include_dirs': [ | 341 'include_dirs': [ |
326 '../include/private', | 342 '../include/private', |
327 '../src/core/', | 343 '../src/core/', |
328 '../src/images', | 344 '../src/images', |
329 ], | 345 ], |
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 'pdf.gyp:pdf', | 693 'pdf.gyp:pdf', |
678 'gputest.gyp:osmesa', | 694 'gputest.gyp:osmesa', |
679 ], | 695 ], |
680 'defines': [ 'FIDDLE_BUILD_TEST' ], | 696 'defines': [ 'FIDDLE_BUILD_TEST' ], |
681 }, | 697 }, |
682 ], | 698 ], |
683 }, | 699 }, |
684 ], | 700 ], |
685 ], | 701 ], |
686 } | 702 } |
OLD | NEW |