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 '../include/private', |
| 24 '../src/core', |
24 '../src/utils', | 25 '../src/utils', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
27 '../src/animator/SkADrawable.cpp', | 28 '../src/animator/SkADrawable.cpp', |
28 '../src/animator/SkADrawable.h', | 29 '../src/animator/SkADrawable.h', |
29 '../include/animator/SkAnimator.h', | 30 '../include/animator/SkAnimator.h', |
30 '../include/animator/SkAnimatorView.h', | 31 '../include/animator/SkAnimatorView.h', |
31 | 32 |
32 '../src/animator/SkAnimate.h', | 33 '../src/animator/SkAnimate.h', |
33 '../src/animator/SkAnimateActive.cpp', | 34 '../src/animator/SkAnimateActive.cpp', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 '../src/animator/SkXMLAnimatorWriter.h', | 182 '../src/animator/SkXMLAnimatorWriter.h', |
182 ], | 183 ], |
183 'direct_dependent_settings': { | 184 'direct_dependent_settings': { |
184 'include_dirs': [ | 185 'include_dirs': [ |
185 '../include/animator', | 186 '../include/animator', |
186 ], | 187 ], |
187 }, | 188 }, |
188 }, | 189 }, |
189 ], | 190 ], |
190 } | 191 } |
OLD | NEW |