| 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', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 '../include/views/SkEventSink.h', | 26 '../include/views/SkEventSink.h', |
| 27 '../include/views/SkKey.h', | 27 '../include/views/SkKey.h', |
| 28 '../include/views/SkOSMenu.h', | 28 '../include/views/SkOSMenu.h', |
| 29 '../include/views/SkOSWindow_Mac.h', | 29 '../include/views/SkOSWindow_Mac.h', |
| 30 '../include/views/SkOSWindow_NaCl.h', | 30 '../include/views/SkOSWindow_NaCl.h', |
| 31 '../include/views/SkOSWindow_SDL.h', | 31 '../include/views/SkOSWindow_SDL.h', |
| 32 '../include/views/SkOSWindow_Unix.h', | 32 '../include/views/SkOSWindow_Unix.h', |
| 33 '../include/views/SkOSWindow_Win.h', | 33 '../include/views/SkOSWindow_Win.h', |
| 34 '../include/views/SkStackViewLayout.h', | 34 '../include/views/SkStackViewLayout.h', |
| 35 '../include/views/SkSystemEventTypes.h', | 35 '../include/views/SkSystemEventTypes.h', |
| 36 '../include/views/SkTextBox.h', | |
| 37 '../include/views/SkTouchGesture.h', | 36 '../include/views/SkTouchGesture.h', |
| 38 '../include/views/SkView.h', | 37 '../include/views/SkView.h', |
| 39 '../include/views/SkViewInflate.h', | 38 '../include/views/SkViewInflate.h', |
| 40 '../include/views/SkWidget.h', | 39 '../include/views/SkWidget.h', |
| 41 '../include/views/SkWindow.h', | 40 '../include/views/SkWindow.h', |
| 42 | 41 |
| 43 '../src/views/SkBGViewArtist.cpp', | 42 '../src/views/SkBGViewArtist.cpp', |
| 44 '../src/views/SkEvent.cpp', | 43 '../src/views/SkEvent.cpp', |
| 45 '../src/views/SkEventSink.cpp', | 44 '../src/views/SkEventSink.cpp', |
| 46 '../src/views/SkOSMenu.cpp', | 45 '../src/views/SkOSMenu.cpp', |
| 47 '../src/views/SkParsePaint.cpp', | 46 '../src/views/SkParsePaint.cpp', |
| 48 '../src/views/SkProgressView.cpp', | 47 '../src/views/SkProgressView.cpp', |
| 49 '../src/views/SkStackViewLayout.cpp', | 48 '../src/views/SkStackViewLayout.cpp', |
| 50 '../src/views/SkTagList.cpp', | 49 '../src/views/SkTagList.cpp', |
| 51 '../src/views/SkTagList.h', | 50 '../src/views/SkTagList.h', |
| 52 '../src/views/SkTextBox.cpp', | |
| 53 '../src/views/SkTouchGesture.cpp', | 51 '../src/views/SkTouchGesture.cpp', |
| 54 '../src/views/SkView.cpp', | 52 '../src/views/SkView.cpp', |
| 55 '../src/views/SkViewInflate.cpp', | 53 '../src/views/SkViewInflate.cpp', |
| 56 '../src/views/SkViewPriv.cpp', | 54 '../src/views/SkViewPriv.cpp', |
| 57 '../src/views/SkViewPriv.h', | 55 '../src/views/SkViewPriv.h', |
| 58 '../src/views/SkWidgets.cpp', | 56 '../src/views/SkWidgets.cpp', |
| 59 '../src/views/SkWindow.cpp', | 57 '../src/views/SkWindow.cpp', |
| 60 | 58 |
| 61 # Mac | 59 # Mac |
| 62 '../src/views/mac/SkOSWindow_Mac.mm', | 60 '../src/views/mac/SkOSWindow_Mac.mm', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 }], | 130 }], |
| 133 ], | 131 ], |
| 134 'direct_dependent_settings': { | 132 'direct_dependent_settings': { |
| 135 'include_dirs': [ | 133 'include_dirs': [ |
| 136 '../include/views', | 134 '../include/views', |
| 137 ], | 135 ], |
| 138 }, | 136 }, |
| 139 }, | 137 }, |
| 140 ], | 138 ], |
| 141 } | 139 } |
| OLD | NEW |