| 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 'angle.gyp:*', |
| 16 'core.gyp:*', |
| 17 'effects.gyp:*', |
| 18 'images.gyp:*', |
| 19 'utils.gyp:*', |
| 20 'xml.gyp:*', |
| 21 ], |
| 14 'include_dirs': [ | 22 'include_dirs': [ |
| 15 '../include/config', | |
| 16 '../include/core', | |
| 17 '../include/effects', | |
| 18 '../include/images', | |
| 19 '../include/lazy', | |
| 20 '../include/utils', | |
| 21 '../include/views', | 23 '../include/views', |
| 22 '../include/views/unix', | 24 '../include/views/unix', |
| 23 '../include/xml', | |
| 24 ], | |
| 25 'dependencies': [ | |
| 26 'angle.gyp:*', | |
| 27 ], | 25 ], |
| 28 'sources': [ | 26 'sources': [ |
| 29 '../include/views/SkApplication.h', | 27 '../include/views/SkApplication.h', |
| 30 '../include/views/SkBGViewArtist.h', | 28 '../include/views/SkBGViewArtist.h', |
| 31 '../include/views/SkEvent.h', | 29 '../include/views/SkEvent.h', |
| 32 '../include/views/SkEventSink.h', | 30 '../include/views/SkEventSink.h', |
| 33 '../include/views/SkKey.h', | 31 '../include/views/SkKey.h', |
| 34 '../include/views/SkOSMenu.h', | 32 '../include/views/SkOSMenu.h', |
| 35 '../include/views/SkOSWindow_Mac.h', | 33 '../include/views/SkOSWindow_Mac.h', |
| 36 '../include/views/SkOSWindow_NaCl.h', | 34 '../include/views/SkOSWindow_NaCl.h', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 }, | 142 }, |
| 145 }, | 143 }, |
| 146 ], | 144 ], |
| 147 } | 145 } |
| 148 | 146 |
| 149 # Local Variables: | 147 # Local Variables: |
| 150 # tab-width:2 | 148 # tab-width:2 |
| 151 # indent-tabs-mode:nil | 149 # indent-tabs-mode:nil |
| 152 # End: | 150 # End: |
| 153 # vim: set expandtab tabstop=2 shiftwidth=2: | 151 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |