| OLD | NEW |
| 1 # Gyp file for effects |
| 1 { | 2 { |
| 2 'targets': [ | 3 'targets': [ |
| 3 { | 4 { |
| 4 'target_name': 'effects', | 5 'target_name': 'effects', |
| 5 'product_name': 'skia_effects', | 6 'product_name': 'skia_effects', |
| 6 'type': 'static_library', | 7 'type': 'static_library', |
| 7 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 8 'includes': [ | 9 'includes': [ |
| 9 'effects.gypi', | 10 'effects.gypi', |
| 10 ], | 11 ], |
| 11 'include_dirs': [ | 12 'include_dirs': [ |
| 12 '../include/config', | 13 '../include/config', |
| 13 '../include/core', | 14 '../include/core', |
| 14 '../include/effects', | 15 '../include/effects', |
| 16 '../include/lazy', |
| 15 '../include/utils', | 17 '../include/utils', |
| 16 '../src/core', | 18 '../src/core', |
| 17 ], | 19 ], |
| 18 'direct_dependent_settings': { | 20 'direct_dependent_settings': { |
| 19 'include_dirs': [ | 21 'include_dirs': [ |
| 20 '../include/effects', | 22 '../include/effects', |
| 21 ], | 23 ], |
| 22 }, | 24 }, |
| 23 'sources': [ | 25 'sources': [ |
| 24 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the
build). | 26 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the
build). |
| 25 ], | 27 ], |
| 26 'conditions': [ | 28 'conditions': [ |
| 27 ['skia_gpu == 1', { | 29 ['skia_gpu == 1', { |
| 28 'include_dirs': [ | 30 'include_dirs': [ |
| 29 '../include/gpu', | 31 '../include/gpu', |
| 30 '../src/gpu', | 32 '../src/gpu', |
| 31 ], | 33 ], |
| 32 }], | 34 }], |
| 33 ], | 35 ], |
| 34 }, | 36 }, |
| 35 ], | 37 ], |
| 36 } | 38 } |
| 37 | 39 |
| 38 # Local Variables: | 40 # Local Variables: |
| 39 # tab-width:2 | 41 # tab-width:2 |
| 40 # indent-tabs-mode:nil | 42 # indent-tabs-mode:nil |
| 41 # End: | 43 # End: |
| 42 # vim: set expandtab tabstop=2 shiftwidth=2: | 44 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |