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 19 matching lines...) Expand all Loading... |
30 '../include/views/SkApplication.h', | 30 '../include/views/SkApplication.h', |
31 '../include/views/SkBGViewArtist.h', | 31 '../include/views/SkBGViewArtist.h', |
32 '../include/views/SkEvent.h', | 32 '../include/views/SkEvent.h', |
33 '../include/views/SkEventSink.h', | 33 '../include/views/SkEventSink.h', |
34 '../include/views/SkKey.h', | 34 '../include/views/SkKey.h', |
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', | |
41 '../include/views/SkSystemEventTypes.h', | 40 '../include/views/SkSystemEventTypes.h', |
42 '../include/views/SkTouchGesture.h', | 41 '../include/views/SkTouchGesture.h', |
43 '../include/views/SkView.h', | 42 '../include/views/SkView.h', |
44 '../include/views/SkViewInflate.h', | 43 '../include/views/SkViewInflate.h', |
45 '../include/views/SkWindow.h', | 44 '../include/views/SkWindow.h', |
46 | 45 |
47 '../src/views/SkBGViewArtist.cpp', | 46 '../src/views/SkBGViewArtist.cpp', |
48 '../src/views/SkEvent.cpp', | 47 '../src/views/SkEvent.cpp', |
49 '../src/views/SkEventSink.cpp', | 48 '../src/views/SkEventSink.cpp', |
50 '../src/views/SkOSMenu.cpp', | 49 '../src/views/SkOSMenu.cpp', |
51 '../src/views/SkParsePaint.cpp', | 50 '../src/views/SkParsePaint.cpp', |
52 '../src/views/SkStackViewLayout.cpp', | |
53 '../src/views/SkTagList.cpp', | 51 '../src/views/SkTagList.cpp', |
54 '../src/views/SkTagList.h', | 52 '../src/views/SkTagList.h', |
55 '../src/views/SkTouchGesture.cpp', | 53 '../src/views/SkTouchGesture.cpp', |
56 '../src/views/SkView.cpp', | 54 '../src/views/SkView.cpp', |
57 '../src/views/SkViewInflate.cpp', | 55 '../src/views/SkViewInflate.cpp', |
58 '../src/views/SkViewPriv.cpp', | 56 '../src/views/SkViewPriv.cpp', |
59 '../src/views/SkViewPriv.h', | 57 '../src/views/SkViewPriv.h', |
60 '../src/views/SkWindow.cpp', | 58 '../src/views/SkWindow.cpp', |
61 | 59 |
62 # Unix | 60 # Unix |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 'include_dirs': [ | 181 'include_dirs': [ |
184 '../include/views', | 182 '../include/views', |
185 ], | 183 ], |
186 }, | 184 }, |
187 'export_dependent_settings': [ | 185 'export_dependent_settings': [ |
188 'xml.gyp:xml', | 186 'xml.gyp:xml', |
189 ], | 187 ], |
190 }, | 188 }, |
191 ], | 189 ], |
192 } | 190 } |
OLD | NEW |