| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 }, | 78 }, |
| 79 }, | 79 }, |
| 80 'targets': [ | 80 'targets': [ |
| 81 { | 81 { |
| 82 'target_name': 'skgpu', | 82 'target_name': 'skgpu', |
| 83 'product_name': 'skia_skgpu', | 83 'product_name': 'skia_skgpu', |
| 84 'type': 'static_library', | 84 'type': 'static_library', |
| 85 'standalone_static_library': 1, | 85 'standalone_static_library': 1, |
| 86 'dependencies': [ | 86 'dependencies': [ |
| 87 'core.gyp:*', | 87 'core.gyp:*', |
| 88 'utils.gyp:*', | 88 'utils.gyp:utils', |
| 89 'etc1.gyp:libetc1', | 89 'etc1.gyp:libetc1', |
| 90 'ktx.gyp:libSkKTX', | 90 'ktx.gyp:libSkKTX', |
| 91 ], | 91 ], |
| 92 'includes': [ | 92 'includes': [ |
| 93 'gpu.gypi', | 93 'gpu.gypi', |
| 94 ], | 94 ], |
| 95 'include_dirs': [ | 95 'include_dirs': [ |
| 96 '../include/gpu', | 96 '../include/gpu', |
| 97 '../src/core', | 97 '../src/core', |
| 98 '../src/gpu', | 98 '../src/gpu', |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'libraries': [ | 247 'libraries': [ |
| 248 '-lGLESv2', | 248 '-lGLESv2', |
| 249 '-lEGL', | 249 '-lEGL', |
| 250 ], | 250 ], |
| 251 }, | 251 }, |
| 252 }], | 252 }], |
| 253 ], | 253 ], |
| 254 }, | 254 }, |
| 255 ], | 255 ], |
| 256 } | 256 } |
| OLD | NEW |