| 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/private', |
| 24 '../include/views', | 24 '../include/views', |
| 25 '../include/views/unix', | 25 '../include/views/unix', |
| 26 '../src/core', |
| 26 '../src/gpu', | 27 '../src/gpu', |
| 27 ], | 28 ], |
| 28 'sources': [ | 29 'sources': [ |
| 29 '../include/views/SkApplication.h', | 30 '../include/views/SkApplication.h', |
| 30 '../include/views/SkBGViewArtist.h', | 31 '../include/views/SkBGViewArtist.h', |
| 31 '../include/views/SkEvent.h', | 32 '../include/views/SkEvent.h', |
| 32 '../include/views/SkEventSink.h', | 33 '../include/views/SkEventSink.h', |
| 33 '../include/views/SkKey.h', | 34 '../include/views/SkKey.h', |
| 34 '../include/views/SkOSMenu.h', | 35 '../include/views/SkOSMenu.h', |
| 35 '../include/views/SkOSWindow_Mac.h', | 36 '../include/views/SkOSWindow_Mac.h', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'include_dirs': [ | 186 'include_dirs': [ |
| 186 '../include/views', | 187 '../include/views', |
| 187 ], | 188 ], |
| 188 }, | 189 }, |
| 189 'export_dependent_settings': [ | 190 'export_dependent_settings': [ |
| 190 'xml.gyp:xml', | 191 'xml.gyp:xml', |
| 191 ], | 192 ], |
| 192 }, | 193 }, |
| 193 ], | 194 ], |
| 194 } | 195 } |
| OLD | NEW |