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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 '../tools/skdiff_html.h', | 50 '../tools/skdiff_html.h', |
51 '../tools/skdiff_image.cpp', | 51 '../tools/skdiff_image.cpp', |
52 '../tools/skdiff_utils.cpp', | 52 '../tools/skdiff_utils.cpp', |
53 '../tools/skdiff_utils.h', | 53 '../tools/skdiff_utils.h', |
54 ], | 54 ], |
55 'dependencies': [ | 55 'dependencies': [ |
56 'skia_lib.gyp:skia_lib', | 56 'skia_lib.gyp:skia_lib', |
57 ], | 57 ], |
58 }, | 58 }, |
59 { | 59 { |
60 'target_name': 'skpdiff', | |
djsollen
2013/06/12 13:32:04
we need to figure out a better place to put this.
Zach Reizner
2013/06/12 21:57:47
Done.
| |
61 'type': 'executable', | |
62 'sources': [ | |
63 '../experimental/skpdiff/main.cpp', | |
64 '../experimental/skpdiff/SkImageDiffer.cpp', | |
65 '../experimental/skpdiff/skpdiff_util.cpp', | |
66 ], | |
67 'dependencies': [ | |
68 'skia_lib.gyp:skia_lib', | |
djsollen
2013/06/12 13:32:04
you will need to update this line to be ../../gyp/
Zach Reizner
2013/06/12 21:57:47
Done.
| |
69 ], | |
70 'link_settings': { | |
71 'libraries': [ | |
72 '-lOpenCL', | |
73 ], | |
74 }, | |
75 }, | |
76 { | |
60 'target_name': 'skhello', | 77 'target_name': 'skhello', |
61 'type': 'executable', | 78 'type': 'executable', |
62 'sources': [ | 79 'sources': [ |
63 '../tools/skhello.cpp', | 80 '../tools/skhello.cpp', |
64 ], | 81 ], |
65 'dependencies': [ | 82 'dependencies': [ |
66 'skia_lib.gyp:skia_lib', | 83 'skia_lib.gyp:skia_lib', |
67 'flags.gyp:flags', | 84 'flags.gyp:flags', |
68 ], | 85 ], |
69 }, | 86 }, |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
312 }, | 329 }, |
313 ], | 330 ], |
314 ], | 331 ], |
315 } | 332 } |
316 | 333 |
317 # Local Variables: | 334 # Local Variables: |
318 # tab-width:2 | 335 # tab-width:2 |
319 # indent-tabs-mode:nil | 336 # indent-tabs-mode:nil |
320 # End: | 337 # End: |
321 # vim: set expandtab tabstop=2 shiftwidth=2: | 338 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |