| 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 # Views is the Skia windowing toolkit. | 5 # Views is the Skia windowing toolkit. |
| 6 # It provides: | 6 # It provides: |
| 7 # * A portable means of creating native windows. | 7 # * A portable means of creating native windows. |
| 8 # * Events. | 8 # * Events. |
| 9 # * Basic widgets and controls. | 9 # * Basic widgets and controls. |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ], | 21 ], |
| 22 'include_dirs': [ | 22 'include_dirs': [ |
| 23 '../include/private', | 23 '../include/private', |
| 24 '../include/views', | 24 '../include/views', |
| 25 '../include/views/unix', | 25 '../include/views/unix', |
| 26 '../src/core', | 26 '../src/core', |
| 27 '../src/gpu', | 27 '../src/gpu', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 '../include/views/SkApplication.h', | 30 '../include/views/SkApplication.h', |
| 31 '../include/views/SkBGViewArtist.h', | |
| 32 '../include/views/SkEvent.h', | 31 '../include/views/SkEvent.h', |
| 33 '../include/views/SkEventSink.h', | 32 '../include/views/SkEventSink.h', |
| 34 '../include/views/SkKey.h', | 33 '../include/views/SkKey.h', |
| 35 '../include/views/SkOSMenu.h', | 34 '../include/views/SkOSMenu.h', |
| 36 '../include/views/SkOSWindow_Mac.h', | 35 '../include/views/SkOSWindow_Mac.h', |
| 37 '../include/views/SkOSWindow_SDL.h', | 36 '../include/views/SkOSWindow_SDL.h', |
| 38 '../include/views/SkOSWindow_Unix.h', | 37 '../include/views/SkOSWindow_Unix.h', |
| 39 '../include/views/SkOSWindow_Win.h', | 38 '../include/views/SkOSWindow_Win.h', |
| 40 '../include/views/SkSystemEventTypes.h', | 39 '../include/views/SkSystemEventTypes.h', |
| 41 '../include/views/SkTouchGesture.h', | 40 '../include/views/SkTouchGesture.h', |
| 42 '../include/views/SkView.h', | 41 '../include/views/SkView.h', |
| 43 '../include/views/SkViewInflate.h', | |
| 44 '../include/views/SkWindow.h', | 42 '../include/views/SkWindow.h', |
| 45 | 43 |
| 46 '../src/views/SkBGViewArtist.cpp', | |
| 47 '../src/views/SkEvent.cpp', | 44 '../src/views/SkEvent.cpp', |
| 48 '../src/views/SkEventSink.cpp', | 45 '../src/views/SkEventSink.cpp', |
| 49 '../src/views/SkOSMenu.cpp', | 46 '../src/views/SkOSMenu.cpp', |
| 50 '../src/views/SkParsePaint.cpp', | |
| 51 '../src/views/SkTagList.cpp', | 47 '../src/views/SkTagList.cpp', |
| 52 '../src/views/SkTagList.h', | 48 '../src/views/SkTagList.h', |
| 53 '../src/views/SkTouchGesture.cpp', | 49 '../src/views/SkTouchGesture.cpp', |
| 54 '../src/views/SkView.cpp', | 50 '../src/views/SkView.cpp', |
| 55 '../src/views/SkViewInflate.cpp', | |
| 56 '../src/views/SkViewPriv.cpp', | 51 '../src/views/SkViewPriv.cpp', |
| 57 '../src/views/SkViewPriv.h', | 52 '../src/views/SkViewPriv.h', |
| 58 '../src/views/SkWindow.cpp', | 53 '../src/views/SkWindow.cpp', |
| 59 | 54 |
| 60 # Unix | 55 # Unix |
| 61 '../src/views/unix/SkOSWindow_Unix.cpp', | 56 '../src/views/unix/SkOSWindow_Unix.cpp', |
| 62 '../src/views/unix/keysym2ucs.c', | 57 '../src/views/unix/keysym2ucs.c', |
| 63 '../src/views/unix/skia_unix.cpp', | 58 '../src/views/unix/skia_unix.cpp', |
| 64 | 59 |
| 65 # Mac | 60 # Mac |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'include_dirs': [ | 176 'include_dirs': [ |
| 182 '../include/views', | 177 '../include/views', |
| 183 ], | 178 ], |
| 184 }, | 179 }, |
| 185 'export_dependent_settings': [ | 180 'export_dependent_settings': [ |
| 186 'xml.gyp:xml', | 181 'xml.gyp:xml', |
| 187 ], | 182 ], |
| 188 }, | 183 }, |
| 189 ], | 184 ], |
| 190 } | 185 } |
| OLD | NEW |