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 #Animator is basically Skia's (much saner) version of Flash. | 5 #Animator is basically Skia's (much saner) version of Flash. |
6 #On top of Views it provides a declarative UI model which can be updated | 6 #On top of Views it provides a declarative UI model which can be updated |
7 #based on events which trigger changes or scripts. | 7 #based on events which trigger changes or scripts. |
8 | 8 |
9 { | 9 { |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'animator', | 12 'target_name': 'animator', |
13 'product_name': 'skia_animator', | 13 'product_name': 'skia_animator', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'standalone_static_library': 1, | 15 'standalone_static_library': 1, |
16 'dependencies': [ | 16 'dependencies': [ |
17 'skia_lib.gyp:skia_lib', | 17 'skia_lib.gyp:skia_lib', |
18 'views.gyp:*', | 18 'views.gyp:*', |
19 'xml.gyp:*', | 19 'xml.gyp:*', |
20 ], | 20 ], |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 '../include/animator', | 22 '../include/animator', |
| 23 '../include/private', |
23 '../src/utils', | 24 '../src/utils', |
24 ], | 25 ], |
25 'sources': [ | 26 'sources': [ |
26 '../src/animator/SkADrawable.cpp', | 27 '../src/animator/SkADrawable.cpp', |
27 '../src/animator/SkADrawable.h', | 28 '../src/animator/SkADrawable.h', |
28 '../include/animator/SkAnimator.h', | 29 '../include/animator/SkAnimator.h', |
29 '../include/animator/SkAnimatorView.h', | 30 '../include/animator/SkAnimatorView.h', |
30 | 31 |
31 '../src/animator/SkAnimate.h', | 32 '../src/animator/SkAnimate.h', |
32 '../src/animator/SkAnimateActive.cpp', | 33 '../src/animator/SkAnimateActive.cpp', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 '../src/animator/SkXMLAnimatorWriter.h', | 181 '../src/animator/SkXMLAnimatorWriter.h', |
181 ], | 182 ], |
182 'direct_dependent_settings': { | 183 'direct_dependent_settings': { |
183 'include_dirs': [ | 184 'include_dirs': [ |
184 '../include/animator', | 185 '../include/animator', |
185 ], | 186 ], |
186 }, | 187 }, |
187 }, | 188 }, |
188 ], | 189 ], |
189 } | 190 } |
OLD | NEW |