| OLD | NEW |
| 1 #Animated widgets are views which use animator. | 1 #Animated widgets are views which use animator. |
| 2 | 2 |
| 3 { | 3 { |
| 4 'targets': [ | 4 'targets': [ |
| 5 { | 5 { |
| 6 'target_name': 'views_animated', | 6 'target_name': 'views_animated', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'dependencies': [ |
| 9 'skia_lib.gyp:skia_lib', |
| 10 'angle.gyp:*', |
| 11 'animator.gyp:*', |
| 12 'views.gyp:*', |
| 13 'xml.gyp:*', |
| 14 ], |
| 8 'include_dirs': [ | 15 'include_dirs': [ |
| 9 '../include/animator', | |
| 10 '../include/config', | |
| 11 '../include/core', | |
| 12 '../include/effects', | |
| 13 '../include/images', | |
| 14 '../include/lazy', | |
| 15 '../include/utils', | |
| 16 '../include/views', | |
| 17 '../include/views/animated', | 16 '../include/views/animated', |
| 18 '../include/views/unix', | 17 '../include/views/unix', |
| 19 '../include/xml', | |
| 20 ], | 18 ], |
| 21 'sources': [ | 19 'sources': [ |
| 22 '../include/views/animated/SkBorderView.h', | 20 '../include/views/animated/SkBorderView.h', |
| 23 '../include/views/animated/SkImageView.h', | 21 '../include/views/animated/SkImageView.h', |
| 24 '../include/views/animated/SkProgressBarView.h', | 22 '../include/views/animated/SkProgressBarView.h', |
| 25 '../include/views/animated/SkScrollBarView.h', | 23 '../include/views/animated/SkScrollBarView.h', |
| 26 '../include/views/animated/SkWidgetViews.h', | 24 '../include/views/animated/SkWidgetViews.h', |
| 27 | 25 |
| 28 '../src/views/animated/SkBorderView.cpp', | 26 '../src/views/animated/SkBorderView.cpp', |
| 29 '../src/views/animated/SkImageView.cpp', | 27 '../src/views/animated/SkImageView.cpp', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 }, | 62 }, |
| 65 }, | 63 }, |
| 66 ], | 64 ], |
| 67 } | 65 } |
| 68 | 66 |
| 69 # Local Variables: | 67 # Local Variables: |
| 70 # tab-width:2 | 68 # tab-width:2 |
| 71 # indent-tabs-mode:nil | 69 # indent-tabs-mode:nil |
| 72 # End: | 70 # End: |
| 73 # vim: set expandtab tabstop=2 shiftwidth=2: | 71 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |