Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: gyp/animator.gyp

Issue 19823003: Update obvious deps. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Remove uwanted (but motivating) changes. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/effects.gyp » ('j') | gyp/pdf.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': [
13 'core.gyp:*',
14 'effects.gyp:*',
15 'images.gyp:*',
16 'utils.gyp:*',
17 'views.gyp:*',
18 'xml.gyp:*',
19 ],
12 'include_dirs': [ 20 'include_dirs': [
13 '../include/animator', 21 '../include/animator',
14 '../include/config',
15 '../include/core',
16 '../include/effects',
17 '../include/images',
18 '../include/lazy',
19 '../include/utils',
20 '../include/views',
21 '../include/xml',
22 '../src/utils', 22 '../src/utils',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 '../include/animator/SkAnimator.h', 25 '../include/animator/SkAnimator.h',
26 '../include/animator/SkAnimatorView.h', 26 '../include/animator/SkAnimatorView.h',
27 27
28 '../src/animator/SkAnimate.h', 28 '../src/animator/SkAnimate.h',
29 '../src/animator/SkAnimateActive.cpp', 29 '../src/animator/SkAnimateActive.cpp',
30 '../src/animator/SkAnimateActive.h', 30 '../src/animator/SkAnimateActive.h',
31 '../src/animator/SkAnimateBase.cpp', 31 '../src/animator/SkAnimateBase.cpp',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 }, 187 },
188 }, 188 },
189 ], 189 ],
190 } 190 }
191 191
192 # Local Variables: 192 # Local Variables:
193 # tab-width:2 193 # tab-width:2
194 # indent-tabs-mode:nil 194 # indent-tabs-mode:nil
195 # End: 195 # End:
196 # vim: set expandtab tabstop=2 shiftwidth=2: 196 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/effects.gyp » ('j') | gyp/pdf.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698