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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 149 |
150 # mac sources | 150 # mac sources |
151 '../src/views/mac/SkEventNotifier.h', | 151 '../src/views/mac/SkEventNotifier.h', |
152 '../src/views/mac/SkEventNotifier.mm', | 152 '../src/views/mac/SkEventNotifier.mm', |
153 '../src/views/mac/SkTextFieldCell.h', | 153 '../src/views/mac/SkTextFieldCell.h', |
154 '../src/views/mac/SkTextFieldCell.m', | 154 '../src/views/mac/SkTextFieldCell.m', |
155 '../src/views/mac/SkNSView.h', | 155 '../src/views/mac/SkNSView.h', |
156 '../src/views/mac/SkNSView.mm', | 156 '../src/views/mac/SkNSView.mm', |
157 '../src/views/mac/SkOSWindow_Mac.mm', | 157 '../src/views/mac/SkOSWindow_Mac.mm', |
158 '../src/views/mac/skia_mac.mm', | 158 '../src/views/mac/skia_mac.mm', |
| 159 |
| 160 # win sources |
| 161 '../src/views/win/SkOSWindow_win.cpp', |
| 162 '../src/views/win/skia_win.cpp', |
159 ], | 163 ], |
160 'sources': [ | 164 'sources': [ |
161 '../src/views/sdl/SkOSWindow_SDL.cpp', | 165 '../src/views/sdl/SkOSWindow_SDL.cpp', |
162 ], | 166 ], |
163 'export_dependent_settings': [ | 167 'export_dependent_settings': [ |
164 'sdl.gyp:sdl', | 168 'sdl.gyp:sdl', |
165 ], | 169 ], |
166 'conditions': [ | 170 'conditions': [ |
167 [ 'skia_os == "mac"', { | 171 [ 'skia_os == "mac"', { |
168 'include_dirs': [ | 172 'include_dirs': [ |
(...skipping 12 matching lines...) Expand all Loading... |
181 'include_dirs': [ | 185 'include_dirs': [ |
182 '../include/views', | 186 '../include/views', |
183 ], | 187 ], |
184 }, | 188 }, |
185 'export_dependent_settings': [ | 189 'export_dependent_settings': [ |
186 'xml.gyp:xml', | 190 'xml.gyp:xml', |
187 ], | 191 ], |
188 }, | 192 }, |
189 ], | 193 ], |
190 } | 194 } |
OLD | NEW |