| 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 'angle.gyp:*', |
| 10 'animator.gyp:*', |
| 11 'core.gyp:*', |
| 12 'effects.gyp:*', |
| 13 'images.gyp:*', |
| 14 'utils.gyp:*', |
| 15 'views.gyp:*', |
| 16 'xml.gyp:*', |
| 17 ], |
| 8 'include_dirs': [ | 18 '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', | 19 '../include/views/animated', |
| 18 '../include/views/unix', | 20 '../include/views/unix', |
| 19 '../include/xml', | |
| 20 ], | 21 ], |
| 21 'sources': [ | 22 'sources': [ |
| 22 '../include/views/animated/SkBorderView.h', | 23 '../include/views/animated/SkBorderView.h', |
| 23 '../include/views/animated/SkImageView.h', | 24 '../include/views/animated/SkImageView.h', |
| 24 '../include/views/animated/SkProgressBarView.h', | 25 '../include/views/animated/SkProgressBarView.h', |
| 25 '../include/views/animated/SkScrollBarView.h', | 26 '../include/views/animated/SkScrollBarView.h', |
| 26 '../include/views/animated/SkWidgetViews.h', | 27 '../include/views/animated/SkWidgetViews.h', |
| 27 | 28 |
| 28 '../src/views/animated/SkBorderView.cpp', | 29 '../src/views/animated/SkBorderView.cpp', |
| 29 '../src/views/animated/SkImageView.cpp', | 30 '../src/views/animated/SkImageView.cpp', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 }, | 65 }, |
| 65 }, | 66 }, |
| 66 ], | 67 ], |
| 67 } | 68 } |
| 68 | 69 |
| 69 # Local Variables: | 70 # Local Variables: |
| 70 # tab-width:2 | 71 # tab-width:2 |
| 71 # indent-tabs-mode:nil | 72 # indent-tabs-mode:nil |
| 72 # End: | 73 # End: |
| 73 # vim: set expandtab tabstop=2 shiftwidth=2: | 74 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |