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