| OLD | NEW |
| 1 # Gyp for utils. | 1 # Gyp for utils. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'utils', | 5 'target_name': 'utils', |
| 6 'product_name': 'skia_utils', | 6 'product_name': 'skia_utils', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'core.gyp:*', | 10 'core.gyp:*', |
| 11 ], | 11 ], |
| 12 'include_dirs': [ | 12 'include_dirs': [ |
| 13 '../include/effects', | 13 '../include/effects', |
| 14 '../include/images', | 14 '../include/images', |
| 15 '../include/lazy', | 15 '../include/lazy', |
| 16 '../include/pathops', | 16 '../include/pathops', |
| 17 '../include/pipe', | 17 '../include/pipe', |
| 18 '../include/utils', | 18 '../include/utils', |
| 19 '../include/utils/mac', | 19 '../include/utils/mac', |
| 20 '../include/utils/unix', | 20 '../include/utils/unix', |
| 21 '../include/utils/win', | 21 '../include/utils/win', |
| 22 '../include/xml', | 22 '../include/xml', |
| 23 '../src/core', | 23 '../src/core', |
| 24 '../src/opts', |
| 24 '../src/utils', | 25 '../src/utils', |
| 25 ], | 26 ], |
| 26 'sources': [ | 27 'sources': [ |
| 27 # Classes for a threadpool. | 28 # Classes for a threadpool. |
| 28 '../include/utils/SkCondVar.h', | 29 '../include/utils/SkCondVar.h', |
| 29 '../include/utils/SkCountdown.h', | 30 '../include/utils/SkCountdown.h', |
| 30 '../include/utils/SkRunnable.h', | 31 '../include/utils/SkRunnable.h', |
| 31 '../include/utils/SkThreadPool.h', | 32 '../include/utils/SkThreadPool.h', |
| 32 '../src/utils/SkCondVar.cpp', | 33 '../src/utils/SkCondVar.cpp', |
| 33 '../src/utils/SkCountdown.cpp', | 34 '../src/utils/SkCountdown.cpp', |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 }, | 219 }, |
| 219 }, | 220 }, |
| 220 ], | 221 ], |
| 221 } | 222 } |
| 222 | 223 |
| 223 # Local Variables: | 224 # Local Variables: |
| 224 # tab-width:2 | 225 # tab-width:2 |
| 225 # indent-tabs-mode:nil | 226 # indent-tabs-mode:nil |
| 226 # End: | 227 # End: |
| 227 # vim: set expandtab tabstop=2 shiftwidth=2: | 228 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |