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', | |
24 '../include/views', | 23 '../include/views', |
25 '../include/views/unix', | 24 '../include/views/unix', |
26 '../src/gpu', | 25 '../src/gpu', |
27 ], | 26 ], |
28 'sources': [ | 27 'sources': [ |
29 '../include/views/SkApplication.h', | 28 '../include/views/SkApplication.h', |
30 '../include/views/SkBGViewArtist.h', | 29 '../include/views/SkBGViewArtist.h', |
31 '../include/views/SkEvent.h', | 30 '../include/views/SkEvent.h', |
32 '../include/views/SkEventSink.h', | 31 '../include/views/SkEventSink.h', |
33 '../include/views/SkKey.h', | 32 '../include/views/SkKey.h', |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'include_dirs': [ | 145 'include_dirs': [ |
147 '../include/views', | 146 '../include/views', |
148 ], | 147 ], |
149 }, | 148 }, |
150 'export_dependent_settings': [ | 149 'export_dependent_settings': [ |
151 'xml.gyp:xml', | 150 'xml.gyp:xml', |
152 ], | 151 ], |
153 }, | 152 }, |
154 ], | 153 ], |
155 } | 154 } |
OLD | NEW |