OLD | NEW |
1 # Views is the Skia windowing toolkit. | 1 # Views is the Skia windowing toolkit. |
2 # It provides: | 2 # It provides: |
3 # * A portable means of creating native windows. | 3 # * A portable means of creating native windows. |
4 # * Events. | 4 # * Events. |
5 # * Basic widgets and controls. | 5 # * Basic widgets and controls. |
6 | 6 |
7 { | 7 { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'views', | 10 'target_name': 'views', |
11 'product_name': 'skia_views', | 11 'product_name': 'skia_views', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'standalone_static_library': 1, | 13 'standalone_static_library': 1, |
| 14 'dependencies': [ |
| 15 'skia_lib.gyp:skia_lib', |
| 16 'angle.gyp:*', |
| 17 'xml.gyp:*', |
| 18 ], |
14 'include_dirs': [ | 19 'include_dirs': [ |
15 '../include/config', | |
16 '../include/core', | |
17 '../include/effects', | |
18 '../include/images', | |
19 '../include/lazy', | |
20 '../include/utils', | |
21 '../include/views', | 20 '../include/views', |
22 '../include/views/unix', | 21 '../include/views/unix', |
23 '../include/xml', | |
24 ], | |
25 'dependencies': [ | |
26 'angle.gyp:*', | |
27 ], | 22 ], |
28 'sources': [ | 23 'sources': [ |
29 '../include/views/SkApplication.h', | 24 '../include/views/SkApplication.h', |
30 '../include/views/SkBGViewArtist.h', | 25 '../include/views/SkBGViewArtist.h', |
31 '../include/views/SkEvent.h', | 26 '../include/views/SkEvent.h', |
32 '../include/views/SkEventSink.h', | 27 '../include/views/SkEventSink.h', |
33 '../include/views/SkKey.h', | 28 '../include/views/SkKey.h', |
34 '../include/views/SkOSMenu.h', | 29 '../include/views/SkOSMenu.h', |
35 '../include/views/SkOSWindow_Mac.h', | 30 '../include/views/SkOSWindow_Mac.h', |
36 '../include/views/SkOSWindow_NaCl.h', | 31 '../include/views/SkOSWindow_NaCl.h', |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 }, | 139 }, |
145 }, | 140 }, |
146 ], | 141 ], |
147 } | 142 } |
148 | 143 |
149 # Local Variables: | 144 # Local Variables: |
150 # tab-width:2 | 145 # tab-width:2 |
151 # indent-tabs-mode:nil | 146 # indent-tabs-mode:nil |
152 # End: | 147 # End: |
153 # vim: set expandtab tabstop=2 shiftwidth=2: | 148 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |