OLD | NEW |
---|---|
1 # Port-specific Skia library code. | 1 # Port-specific Skia library code. |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'ports', | 5 'target_name': 'ports', |
6 'product_name': 'skia_ports', | 6 'product_name': 'skia_ports', |
7 'type': 'static_library', | 7 'type': 'static_library', |
8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
9 'dependencies': [ | |
10 'core.gyp:*', | |
11 ], | |
9 'include_dirs': [ | 12 'include_dirs': [ |
10 '../include/config', | |
11 '../include/core', | |
12 '../include/effects', | 13 '../include/effects', |
bungeman-skia
2013/07/19 18:15:22
The rest of these includes indicate potential circ
| |
13 '../include/images', | 14 '../include/images', |
14 '../include/ports', | 15 '../include/ports', |
15 '../include/utils', | 16 '../include/utils', |
16 '../include/utils/win', | 17 '../include/utils/win', |
17 '../include/xml', | 18 '../include/xml', |
18 '../src/core', | 19 '../src/core', |
19 '../src/lazy', | 20 '../src/lazy', |
20 '../src/sfnt', | 21 '../src/sfnt', |
21 '../src/utils', | 22 '../src/utils', |
22 ], | 23 ], |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
191 }, | 192 }, |
192 }, | 193 }, |
193 ], | 194 ], |
194 } | 195 } |
195 | 196 |
196 # Local Variables: | 197 # Local Variables: |
197 # tab-width:2 | 198 # tab-width:2 |
198 # indent-tabs-mode:nil | 199 # indent-tabs-mode:nil |
199 # End: | 200 # End: |
200 # vim: set expandtab tabstop=2 shiftwidth=2: | 201 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |