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