| 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 24 matching lines...) Expand all Loading... |
| 35 '../include/views/SkOSMenu.h', | 35 '../include/views/SkOSMenu.h', |
| 36 '../include/views/SkOSWindow_Mac.h', | 36 '../include/views/SkOSWindow_Mac.h', |
| 37 '../include/views/SkOSWindow_SDL.h', | 37 '../include/views/SkOSWindow_SDL.h', |
| 38 '../include/views/SkOSWindow_Unix.h', | 38 '../include/views/SkOSWindow_Unix.h', |
| 39 '../include/views/SkOSWindow_Win.h', | 39 '../include/views/SkOSWindow_Win.h', |
| 40 '../include/views/SkStackViewLayout.h', | 40 '../include/views/SkStackViewLayout.h', |
| 41 '../include/views/SkSystemEventTypes.h', | 41 '../include/views/SkSystemEventTypes.h', |
| 42 '../include/views/SkTouchGesture.h', | 42 '../include/views/SkTouchGesture.h', |
| 43 '../include/views/SkView.h', | 43 '../include/views/SkView.h', |
| 44 '../include/views/SkViewInflate.h', | 44 '../include/views/SkViewInflate.h', |
| 45 '../include/views/SkWidget.h', | |
| 46 '../include/views/SkWindow.h', | 45 '../include/views/SkWindow.h', |
| 47 | 46 |
| 48 '../src/views/SkBGViewArtist.cpp', | 47 '../src/views/SkBGViewArtist.cpp', |
| 49 '../src/views/SkEvent.cpp', | 48 '../src/views/SkEvent.cpp', |
| 50 '../src/views/SkEventSink.cpp', | 49 '../src/views/SkEventSink.cpp', |
| 51 '../src/views/SkOSMenu.cpp', | 50 '../src/views/SkOSMenu.cpp', |
| 52 '../src/views/SkParsePaint.cpp', | 51 '../src/views/SkParsePaint.cpp', |
| 53 '../src/views/SkProgressView.cpp', | |
| 54 '../src/views/SkStackViewLayout.cpp', | 52 '../src/views/SkStackViewLayout.cpp', |
| 55 '../src/views/SkTagList.cpp', | 53 '../src/views/SkTagList.cpp', |
| 56 '../src/views/SkTagList.h', | 54 '../src/views/SkTagList.h', |
| 57 '../src/views/SkTouchGesture.cpp', | 55 '../src/views/SkTouchGesture.cpp', |
| 58 '../src/views/SkView.cpp', | 56 '../src/views/SkView.cpp', |
| 59 '../src/views/SkViewInflate.cpp', | 57 '../src/views/SkViewInflate.cpp', |
| 60 '../src/views/SkViewPriv.cpp', | 58 '../src/views/SkViewPriv.cpp', |
| 61 '../src/views/SkViewPriv.h', | 59 '../src/views/SkViewPriv.h', |
| 62 '../src/views/SkWidgets.cpp', | |
| 63 '../src/views/SkWindow.cpp', | 60 '../src/views/SkWindow.cpp', |
| 64 | 61 |
| 65 # Unix | 62 # Unix |
| 66 '../src/views/unix/SkOSWindow_Unix.cpp', | 63 '../src/views/unix/SkOSWindow_Unix.cpp', |
| 67 '../src/views/unix/keysym2ucs.c', | 64 '../src/views/unix/keysym2ucs.c', |
| 68 '../src/views/unix/skia_unix.cpp', | 65 '../src/views/unix/skia_unix.cpp', |
| 69 | 66 |
| 70 # Mac | 67 # Mac |
| 71 '../src/views/mac/SkEventNotifier.h', | 68 '../src/views/mac/SkEventNotifier.h', |
| 72 '../src/views/mac/SkEventNotifier.mm', | 69 '../src/views/mac/SkEventNotifier.mm', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 'include_dirs': [ | 183 'include_dirs': [ |
| 187 '../include/views', | 184 '../include/views', |
| 188 ], | 185 ], |
| 189 }, | 186 }, |
| 190 'export_dependent_settings': [ | 187 'export_dependent_settings': [ |
| 191 'xml.gyp:xml', | 188 'xml.gyp:xml', |
| 192 ], | 189 ], |
| 193 }, | 190 }, |
| 194 ], | 191 ], |
| 195 } | 192 } |
| OLD | NEW |