| OLD | NEW |
| 1 { | 1 { |
| 2 'target_defaults': { | 2 'target_defaults': { |
| 3 'conditions': [ | 3 'conditions': [ |
| 4 ['skia_os != "win"', { | 4 ['skia_os != "win"', { |
| 5 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 5 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| 6 ], | 6 ], |
| 7 }], | 7 }], |
| 8 ['skia_os != "mac"', { | 8 ['skia_os != "mac"', { |
| 9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], | 9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], |
| 10 ], | 10 ], |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'target_name': 'skgr', | 120 'target_name': 'skgr', |
| 121 'product_name': 'skia_skgr', | 121 'product_name': 'skia_skgr', |
| 122 'type': 'static_library', | 122 'type': 'static_library', |
| 123 'standalone_static_library': 1, | 123 'standalone_static_library': 1, |
| 124 'includes': [ | 124 'includes': [ |
| 125 'gpu.gypi', | 125 'gpu.gypi', |
| 126 ], | 126 ], |
| 127 'include_dirs': [ | 127 'include_dirs': [ |
| 128 '../include/config', | 128 '../include/config', |
| 129 '../include/core', | 129 '../include/core', |
| 130 '../include/effects', |
| 130 '../include/utils', | 131 '../include/utils', |
| 131 '../src/core', | 132 '../src/core', |
| 132 '../include/gpu', | 133 '../include/gpu', |
| 133 '../src/gpu', | 134 '../src/gpu', |
| 134 ], | 135 ], |
| 135 'dependencies': [ | 136 'dependencies': [ |
| 136 'angle.gyp:*', | 137 'angle.gyp:*', |
| 137 ], | 138 ], |
| 138 'export_dependent_settings': [ | 139 'export_dependent_settings': [ |
| 139 'angle.gyp:*', | 140 'angle.gyp:*', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 'target_name': 'gr', | 176 'target_name': 'gr', |
| 176 'product_name': 'skia_gr', | 177 'product_name': 'skia_gr', |
| 177 'type': 'static_library', | 178 'type': 'static_library', |
| 178 'standalone_static_library': 1, | 179 'standalone_static_library': 1, |
| 179 'includes': [ | 180 'includes': [ |
| 180 'gpu.gypi', | 181 'gpu.gypi', |
| 181 ], | 182 ], |
| 182 'include_dirs': [ | 183 'include_dirs': [ |
| 183 '../include/core', | 184 '../include/core', |
| 184 '../include/config', | 185 '../include/config', |
| 186 '../include/effects', |
| 185 '../include/utils', | 187 '../include/utils', |
| 186 '../include/gpu', | 188 '../include/gpu', |
| 187 '../src/core', # SkRasterClip.h | 189 '../src/core', # SkRasterClip.h |
| 188 '../src/gpu' | 190 '../src/gpu' |
| 189 ], | 191 ], |
| 190 'dependencies': [ | 192 'dependencies': [ |
| 191 'angle.gyp:*', | 193 'angle.gyp:*', |
| 192 ], | 194 ], |
| 193 'export_dependent_settings': [ | 195 'export_dependent_settings': [ |
| 194 'angle.gyp:*', | 196 'angle.gyp:*', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 ], | 319 ], |
| 318 }, | 320 }, |
| 319 ], | 321 ], |
| 320 } | 322 } |
| 321 | 323 |
| 322 # Local Variables: | 324 # Local Variables: |
| 323 # tab-width:2 | 325 # tab-width:2 |
| 324 # indent-tabs-mode:nil | 326 # indent-tabs-mode:nil |
| 325 # End: | 327 # End: |
| 326 # vim: set expandtab tabstop=2 shiftwidth=2: | 328 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |