OLD | NEW |
1 #Animator is basically Skia's (much saner) version of Flash. | 1 #Animator is basically Skia's (much saner) version of Flash. |
2 #On top of Views it provides a declarative UI model which can be updated | 2 #On top of Views it provides a declarative UI model which can be updated |
3 #based on events which trigger changes or scripts. | 3 #based on events which trigger changes or scripts. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'animator', | 8 'target_name': 'animator', |
9 'product_name': 'skia_animator', | 9 'product_name': 'skia_animator', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'standalone_static_library': 1, | 11 'standalone_static_library': 1, |
12 'dependencies': [ | 12 'dependencies': [ |
13 'skia_lib.gyp:skia_lib', | 13 'skia_lib.gyp:skia_lib', |
14 'views.gyp:*', | 14 'views.gyp:*', |
15 'xml.gyp:*', | 15 'xml.gyp:*', |
16 ], | 16 ], |
17 'include_dirs': [ | 17 'include_dirs': [ |
18 '../include/animator', | 18 '../include/animator', |
| 19 '../src/core', |
| 20 '../src/opts', |
19 '../src/utils', | 21 '../src/utils', |
20 ], | 22 ], |
21 'sources': [ | 23 'sources': [ |
22 '../include/animator/SkAnimator.h', | 24 '../include/animator/SkAnimator.h', |
23 '../include/animator/SkAnimatorView.h', | 25 '../include/animator/SkAnimatorView.h', |
24 | 26 |
25 '../src/animator/SkAnimate.h', | 27 '../src/animator/SkAnimate.h', |
26 '../src/animator/SkAnimateActive.cpp', | 28 '../src/animator/SkAnimateActive.cpp', |
27 '../src/animator/SkAnimateActive.h', | 29 '../src/animator/SkAnimateActive.h', |
28 '../src/animator/SkAnimateBase.cpp', | 30 '../src/animator/SkAnimateBase.cpp', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 }, | 186 }, |
185 }, | 187 }, |
186 ], | 188 ], |
187 } | 189 } |
188 | 190 |
189 # Local Variables: | 191 # Local Variables: |
190 # tab-width:2 | 192 # tab-width:2 |
191 # indent-tabs-mode:nil | 193 # indent-tabs-mode:nil |
192 # End: | 194 # End: |
193 # vim: set expandtab tabstop=2 shiftwidth=2: | 195 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |