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': [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 '../src/animator/SkAnimateSet.cpp', | 42 '../src/animator/SkAnimateSet.cpp', |
43 '../src/animator/SkAnimateSet.h', | 43 '../src/animator/SkAnimateSet.h', |
44 '../src/animator/SkAnimator.cpp', | 44 '../src/animator/SkAnimator.cpp', |
45 '../src/animator/SkAnimatorScript.cpp', | 45 '../src/animator/SkAnimatorScript.cpp', |
46 '../src/animator/SkAnimatorScript.h', | 46 '../src/animator/SkAnimatorScript.h', |
47 #'../src/animator/SkAnimatorScript2.cpp', fails on windows | 47 #'../src/animator/SkAnimatorScript2.cpp', fails on windows |
48 #'../src/animator/SkAnimatorScript2.h', | 48 #'../src/animator/SkAnimatorScript2.h', |
49 '../src/animator/SkBoundable.cpp', | 49 '../src/animator/SkBoundable.cpp', |
50 '../src/animator/SkBoundable.h', | 50 '../src/animator/SkBoundable.h', |
51 '../src/animator/SkBuildCondensedInfo.cpp', | 51 '../src/animator/SkBuildCondensedInfo.cpp', |
52 #'../src/animator/SkCondensedDebug.cpp', fails on windows | 52 #'../src/animator/SkCondensedDebug.inc', fails on windows |
53 #'../src/animator/SkCondensedRelease.cpp', | 53 #'../src/animator/SkCondensedRelease.inc', |
54 '../src/animator/SkDisplayable.cpp', | 54 '../src/animator/SkDisplayable.cpp', |
55 '../src/animator/SkDisplayable.h', | 55 '../src/animator/SkDisplayable.h', |
56 '../src/animator/SkDisplayAdd.cpp', | 56 '../src/animator/SkDisplayAdd.cpp', |
57 '../src/animator/SkDisplayAdd.h', | 57 '../src/animator/SkDisplayAdd.h', |
58 '../src/animator/SkDisplayApply.cpp', | 58 '../src/animator/SkDisplayApply.cpp', |
59 '../src/animator/SkDisplayApply.h', | 59 '../src/animator/SkDisplayApply.h', |
60 '../src/animator/SkDisplayBounds.cpp', | 60 '../src/animator/SkDisplayBounds.cpp', |
61 '../src/animator/SkDisplayBounds.h', | 61 '../src/animator/SkDisplayBounds.h', |
62 '../src/animator/SkDisplayEvent.cpp', | 62 '../src/animator/SkDisplayEvent.cpp', |
63 '../src/animator/SkDisplayEvent.h', | 63 '../src/animator/SkDisplayEvent.h', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 '../src/animator/SkXMLAnimatorWriter.h', | 181 '../src/animator/SkXMLAnimatorWriter.h', |
182 ], | 182 ], |
183 'direct_dependent_settings': { | 183 'direct_dependent_settings': { |
184 'include_dirs': [ | 184 'include_dirs': [ |
185 '../include/animator', | 185 '../include/animator', |
186 ], | 186 ], |
187 }, | 187 }, |
188 }, | 188 }, |
189 ], | 189 ], |
190 } | 190 } |
OLD | NEW |