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 |
11 { | 11 { |
| 12 'variables': { |
| 13 'skia_use_sdl%': 0, |
| 14 }, |
12 'targets': [ | 15 'targets': [ |
13 { | 16 { |
14 'target_name': 'views', | 17 'target_name': 'views', |
15 'product_name': 'skia_views', | 18 'product_name': 'skia_views', |
16 'type': 'static_library', | 19 'type': 'static_library', |
17 'standalone_static_library': 1, | 20 'standalone_static_library': 1, |
18 'dependencies': [ | 21 'dependencies': [ |
19 'skia_lib.gyp:skia_lib', | 22 'skia_lib.gyp:skia_lib', |
20 'xml.gyp:xml', | 23 'xml.gyp:xml', |
21 ], | 24 ], |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'include_dirs': [ | 161 'include_dirs': [ |
159 '../include/views', | 162 '../include/views', |
160 ], | 163 ], |
161 }, | 164 }, |
162 'export_dependent_settings': [ | 165 'export_dependent_settings': [ |
163 'xml.gyp:xml', | 166 'xml.gyp:xml', |
164 ], | 167 ], |
165 }, | 168 }, |
166 ], | 169 ], |
167 } | 170 } |
OLD | NEW |