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 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'views', | 14 'target_name': 'views', |
15 'product_name': 'skia_views', | 15 'product_name': 'skia_views', |
16 'type': 'static_library', | 16 'type': 'static_library', |
17 'standalone_static_library': 1, | 17 'standalone_static_library': 1, |
18 'dependencies': [ | 18 'dependencies': [ |
19 'skia_lib.gyp:skia_lib', | 19 'skia_lib.gyp:skia_lib', |
20 'xml.gyp:xml', | 20 'xml.gyp:xml', |
21 ], | 21 ], |
22 'include_dirs': [ | 22 'include_dirs': [ |
| 23 '../include/private', |
23 '../include/views', | 24 '../include/views', |
24 '../include/views/unix', | 25 '../include/views/unix', |
25 '../src/gpu', | 26 '../src/gpu', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 '../include/views/SkApplication.h', | 29 '../include/views/SkApplication.h', |
29 '../include/views/SkBGViewArtist.h', | 30 '../include/views/SkBGViewArtist.h', |
30 '../include/views/SkEvent.h', | 31 '../include/views/SkEvent.h', |
31 '../include/views/SkEventSink.h', | 32 '../include/views/SkEventSink.h', |
32 '../include/views/SkKey.h', | 33 '../include/views/SkKey.h', |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'include_dirs': [ | 146 'include_dirs': [ |
146 '../include/views', | 147 '../include/views', |
147 ], | 148 ], |
148 }, | 149 }, |
149 'export_dependent_settings': [ | 150 'export_dependent_settings': [ |
150 'xml.gyp:xml', | 151 'xml.gyp:xml', |
151 ], | 152 ], |
152 }, | 153 }, |
153 ], | 154 ], |
154 } | 155 } |
OLD | NEW |