| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 '../src/animator/SkDrawSaveLayer.cpp', | 125 '../src/animator/SkDrawSaveLayer.cpp', |
| 126 '../src/animator/SkDrawSaveLayer.h', | 126 '../src/animator/SkDrawSaveLayer.h', |
| 127 '../src/animator/SkDrawShader.cpp', | 127 '../src/animator/SkDrawShader.cpp', |
| 128 '../src/animator/SkDrawShader.h', | 128 '../src/animator/SkDrawShader.h', |
| 129 '../src/animator/SkDrawText.cpp', | 129 '../src/animator/SkDrawText.cpp', |
| 130 '../src/animator/SkDrawText.h', | 130 '../src/animator/SkDrawText.h', |
| 131 '../src/animator/SkDrawTextBox.cpp', | 131 '../src/animator/SkDrawTextBox.cpp', |
| 132 '../src/animator/SkDrawTextBox.h', | 132 '../src/animator/SkDrawTextBox.h', |
| 133 '../src/animator/SkDrawTo.cpp', | 133 '../src/animator/SkDrawTo.cpp', |
| 134 '../src/animator/SkDrawTo.h', | 134 '../src/animator/SkDrawTo.h', |
| 135 '../src/animator/SkDrawTransparentShader.cpp', | |
| 136 '../src/animator/SkDrawTransparentShader.h', | |
| 137 '../src/animator/SkDump.cpp', | 135 '../src/animator/SkDump.cpp', |
| 138 '../src/animator/SkDump.h', | 136 '../src/animator/SkDump.h', |
| 139 '../src/animator/SkExtras.h', | 137 '../src/animator/SkExtras.h', |
| 140 '../src/animator/SkGetCondensedInfo.cpp', | 138 '../src/animator/SkGetCondensedInfo.cpp', |
| 141 '../src/animator/SkHitClear.cpp', | 139 '../src/animator/SkHitClear.cpp', |
| 142 '../src/animator/SkHitClear.h', | 140 '../src/animator/SkHitClear.h', |
| 143 '../src/animator/SkHitTest.cpp', | 141 '../src/animator/SkHitTest.cpp', |
| 144 '../src/animator/SkHitTest.h', | 142 '../src/animator/SkHitTest.h', |
| 145 '../src/animator/SkIntArray.h', | 143 '../src/animator/SkIntArray.h', |
| 146 '../src/animator/SkMatrixParts.cpp', | 144 '../src/animator/SkMatrixParts.cpp', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 '../src/animator/SkXMLAnimatorWriter.h', | 180 '../src/animator/SkXMLAnimatorWriter.h', |
| 183 ], | 181 ], |
| 184 'direct_dependent_settings': { | 182 'direct_dependent_settings': { |
| 185 'include_dirs': [ | 183 'include_dirs': [ |
| 186 '../include/animator', | 184 '../include/animator', |
| 187 ], | 185 ], |
| 188 }, | 186 }, |
| 189 }, | 187 }, |
| 190 ], | 188 ], |
| 191 } | 189 } |
| OLD | NEW |