Chromium Code Reviews| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 }, | 76 }, |
| 77 'targets': [ | 77 'targets': [ |
| 78 { | 78 { |
| 79 'target_name': 'skgpu', | 79 'target_name': 'skgpu', |
| 80 'product_name': 'skia_skgpu', | 80 'product_name': 'skia_skgpu', |
| 81 'type': 'static_library', | 81 'type': 'static_library', |
| 82 'standalone_static_library': 1, | 82 'standalone_static_library': 1, |
| 83 'dependencies': [ | 83 'dependencies': [ |
| 84 'angle.gyp:*', | 84 'angle.gyp:*', |
| 85 'core.gyp:*', | 85 'core.gyp:*', |
| 86 'edtaa.gyp:*', | |
|
bsalomon
2013/11/04 20:34:53
Can we make this dependency require a gyp/compile
jvanverth1
2013/11/05 14:59:11
I didn't put the dependency behind a flag, but did
| |
| 86 'utils.gyp:*', | 87 'utils.gyp:*', |
| 87 ], | 88 ], |
| 88 'includes': [ | 89 'includes': [ |
| 89 'gpu.gypi', | 90 'gpu.gypi', |
| 90 ], | 91 ], |
| 91 'include_dirs': [ | 92 'include_dirs': [ |
| 92 '../include/gpu', | 93 '../include/gpu', |
| 93 '../src/core', | 94 '../src/core', |
| 94 '../src/gpu', | 95 '../src/gpu', |
| 95 ], | 96 ], |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 218 ], | 219 ], |
| 219 }, | 220 }, |
| 220 ], | 221 ], |
| 221 } | 222 } |
| 222 | 223 |
| 223 # Local Variables: | 224 # Local Variables: |
| 224 # tab-width:2 | 225 # tab-width:2 |
| 225 # indent-tabs-mode:nil | 226 # indent-tabs-mode:nil |
| 226 # End: | 227 # End: |
| 227 # vim: set expandtab tabstop=2 shiftwidth=2: | 228 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |