| 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 14 matching lines...) Expand all Loading... |
| 25 '../src/gpu', | 25 '../src/gpu', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 '../include/views/SkApplication.h', | 28 '../include/views/SkApplication.h', |
| 29 '../include/views/SkBGViewArtist.h', | 29 '../include/views/SkBGViewArtist.h', |
| 30 '../include/views/SkEvent.h', | 30 '../include/views/SkEvent.h', |
| 31 '../include/views/SkEventSink.h', | 31 '../include/views/SkEventSink.h', |
| 32 '../include/views/SkKey.h', | 32 '../include/views/SkKey.h', |
| 33 '../include/views/SkOSMenu.h', | 33 '../include/views/SkOSMenu.h', |
| 34 '../include/views/SkOSWindow_Mac.h', | 34 '../include/views/SkOSWindow_Mac.h', |
| 35 '../include/views/SkOSWindow_NaCl.h', | |
| 36 '../include/views/SkOSWindow_SDL.h', | 35 '../include/views/SkOSWindow_SDL.h', |
| 37 '../include/views/SkOSWindow_Unix.h', | 36 '../include/views/SkOSWindow_Unix.h', |
| 38 '../include/views/SkOSWindow_Win.h', | 37 '../include/views/SkOSWindow_Win.h', |
| 39 '../include/views/SkStackViewLayout.h', | 38 '../include/views/SkStackViewLayout.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', | 42 '../include/views/SkViewInflate.h', |
| 44 '../include/views/SkWidget.h', | 43 '../include/views/SkWidget.h', |
| 45 '../include/views/SkWindow.h', | 44 '../include/views/SkWindow.h', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 '../src/views/unix/skia_unix.cpp', | 114 '../src/views/unix/skia_unix.cpp', |
| 116 ], | 115 ], |
| 117 }], | 116 }], |
| 118 [ 'skia_os == "win"', { | 117 [ 'skia_os == "win"', { |
| 119 },{ | 118 },{ |
| 120 'sources!': [ | 119 'sources!': [ |
| 121 '../src/views/win/SkOSWindow_win.cpp', | 120 '../src/views/win/SkOSWindow_win.cpp', |
| 122 '../src/views/win/skia_win.cpp', | 121 '../src/views/win/skia_win.cpp', |
| 123 ], | 122 ], |
| 124 }], | 123 }], |
| 125 [ 'skia_os == "nacl"', { | |
| 126 'sources!': [ | |
| 127 '../src/views/unix/SkOSWindow_Unix.cpp', | |
| 128 '../src/views/unix/keysym2ucs.c', | |
| 129 '../src/views/unix/skia_unix.cpp', | |
| 130 ], | |
| 131 }, { | |
| 132 'sources!': [ | |
| 133 '../src/views/nacl/SkOSWindow_NaCl.cpp', | |
| 134 ], | |
| 135 }], | |
| 136 [ 'skia_gpu == 1', { | 124 [ 'skia_gpu == 1', { |
| 137 'include_dirs': [ | 125 'include_dirs': [ |
| 138 '../include/gpu', | 126 '../include/gpu', |
| 139 ], | 127 ], |
| 140 }], | 128 }], |
| 141 ], | 129 ], |
| 142 'direct_dependent_settings': { | 130 'direct_dependent_settings': { |
| 143 'include_dirs': [ | 131 'include_dirs': [ |
| 144 '../include/views', | 132 '../include/views', |
| 145 ], | 133 ], |
| 146 }, | 134 }, |
| 147 'export_dependent_settings': [ | 135 'export_dependent_settings': [ |
| 148 'xml.gyp:xml', | 136 'xml.gyp:xml', |
| 149 ], | 137 ], |
| 150 }, | 138 }, |
| 151 ], | 139 ], |
| 152 } | 140 } |
| OLD | NEW |