| OLD | NEW |
| 1 # GYP for building gpu | 1 # GYP for building gpu |
| 2 { | 2 { |
| 3 'target_defaults': { | 3 'target_defaults': { |
| 4 'conditions': [ | 4 'conditions': [ |
| 5 ['skia_os != "win"', { | 5 ['skia_os != "win"', { |
| 6 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 6 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| 7 ], | 7 ], |
| 8 }], | 8 }], |
| 9 ['skia_os != "mac"', { | 9 ['skia_os != "mac"', { |
| 10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], | 10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 }, | 77 }, |
| 78 'targets': [ | 78 'targets': [ |
| 79 { | 79 { |
| 80 'target_name': 'skgpu', | 80 'target_name': 'skgpu', |
| 81 'product_name': 'skia_skgpu', | 81 'product_name': 'skia_skgpu', |
| 82 'type': 'static_library', | 82 'type': 'static_library', |
| 83 'standalone_static_library': 1, | 83 'standalone_static_library': 1, |
| 84 'dependencies': [ | 84 'dependencies': [ |
| 85 'core.gyp:*', | 85 'core.gyp:*', |
| 86 'utils.gyp:*', | 86 'utils.gyp:*', |
| 87 'etc1.gyp:libetc1', | |
| 88 ], | 87 ], |
| 89 'includes': [ | 88 'includes': [ |
| 90 'gpu.gypi', | 89 'gpu.gypi', |
| 91 ], | 90 ], |
| 92 'include_dirs': [ | 91 'include_dirs': [ |
| 93 '../include/gpu', | 92 '../include/gpu', |
| 94 '../src/core', | 93 '../src/core', |
| 95 '../src/gpu', | 94 '../src/gpu', |
| 96 ], | 95 ], |
| 97 'sources': [ | 96 'sources': [ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 'libraries': [ | 214 'libraries': [ |
| 216 '-lGLESv2', | 215 '-lGLESv2', |
| 217 '-lEGL', | 216 '-lEGL', |
| 218 ], | 217 ], |
| 219 }, | 218 }, |
| 220 }], | 219 }], |
| 221 ], | 220 ], |
| 222 }, | 221 }, |
| 223 ], | 222 ], |
| 224 } | 223 } |
| OLD | NEW |