| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 '../include/gpu', | 114 '../include/gpu', |
| 115 ], | 115 ], |
| 116 }, | 116 }, |
| 117 }, | 117 }, |
| 118 'targets': [ | 118 'targets': [ |
| 119 { | 119 { |
| 120 'target_name': 'skgpu', | 120 'target_name': 'skgpu', |
| 121 'product_name': 'skia_skgpu', | 121 'product_name': 'skia_skgpu', |
| 122 'type': 'static_library', | 122 'type': 'static_library', |
| 123 'standalone_static_library': 1, | 123 'standalone_static_library': 1, |
| 124 'dependencies': [ |
| 125 'angle.gyp:*', |
| 126 'core.gyp:*', |
| 127 'utils.gyp:*', |
| 128 ], |
| 124 'includes': [ | 129 'includes': [ |
| 125 'gpu.gypi', | 130 'gpu.gypi', |
| 126 ], | 131 ], |
| 127 'include_dirs': [ | 132 'include_dirs': [ |
| 128 '../include/config', | 133 '../include/gpu', |
| 129 '../include/core', | |
| 130 '../include/utils', | |
| 131 '../src/core', | 134 '../src/core', |
| 132 '../include/gpu', | |
| 133 '../src/gpu', | 135 '../src/gpu', |
| 134 ], | 136 ], |
| 135 'dependencies': [ | |
| 136 'angle.gyp:*', | |
| 137 ], | |
| 138 'export_dependent_settings': [ | 137 'export_dependent_settings': [ |
| 139 'angle.gyp:*', | 138 'angle.gyp:*', |
| 140 ], | 139 ], |
| 141 'sources': [ | 140 'sources': [ |
| 142 '<@(skgpu_sources)', | 141 '<@(skgpu_sources)', |
| 143 '<@(skgpu_native_gl_sources)', | 142 '<@(skgpu_native_gl_sources)', |
| 144 '<@(skgpu_angle_gl_sources)', | 143 '<@(skgpu_angle_gl_sources)', |
| 145 '<@(skgpu_mesa_gl_sources)', | 144 '<@(skgpu_mesa_gl_sources)', |
| 146 '<@(skgpu_debug_gl_sources)', | 145 '<@(skgpu_debug_gl_sources)', |
| 147 '<@(skgpu_null_gl_sources)', | 146 '<@(skgpu_null_gl_sources)', |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ], | 262 ], |
| 264 }, | 263 }, |
| 265 ], | 264 ], |
| 266 } | 265 } |
| 267 | 266 |
| 268 # Local Variables: | 267 # Local Variables: |
| 269 # tab-width:2 | 268 # tab-width:2 |
| 270 # indent-tabs-mode:nil | 269 # indent-tabs-mode:nil |
| 271 # End: | 270 # End: |
| 272 # vim: set expandtab tabstop=2 shiftwidth=2: | 271 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |