| 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': [ | 14 'dependencies': [ |
| 15 'skia_lib.gyp:skia_lib', | 15 'skia_lib.gyp:skia_lib', |
| 16 'xml.gyp:xml', | 16 'xml.gyp:xml', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '../include/views', | 19 '../include/views', |
| 20 '../include/views/unix', | 20 '../include/views/unix', |
| 21 '../src/gpu', |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 '../include/views/SkApplication.h', | 24 '../include/views/SkApplication.h', |
| 24 '../include/views/SkBGViewArtist.h', | 25 '../include/views/SkBGViewArtist.h', |
| 25 '../include/views/SkEvent.h', | 26 '../include/views/SkEvent.h', |
| 26 '../include/views/SkEventSink.h', | 27 '../include/views/SkEventSink.h', |
| 27 '../include/views/SkKey.h', | 28 '../include/views/SkKey.h', |
| 28 '../include/views/SkOSMenu.h', | 29 '../include/views/SkOSMenu.h', |
| 29 '../include/views/SkOSWindow_Mac.h', | 30 '../include/views/SkOSWindow_Mac.h', |
| 30 '../include/views/SkOSWindow_NaCl.h', | 31 '../include/views/SkOSWindow_NaCl.h', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'include_dirs': [ | 139 'include_dirs': [ |
| 139 '../include/views', | 140 '../include/views', |
| 140 ], | 141 ], |
| 141 }, | 142 }, |
| 142 'export_dependent_settings': [ | 143 'export_dependent_settings': [ |
| 143 'xml.gyp:xml', | 144 'xml.gyp:xml', |
| 144 ], | 145 ], |
| 145 }, | 146 }, |
| 146 ], | 147 ], |
| 147 } | 148 } |
| OLD | NEW |