OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # GYP for building gpu | 5 # GYP for building gpu |
6 { | 6 { |
7 'target_defaults': { | 7 'target_defaults': { |
8 'conditions': [ | 8 'conditions': [ |
9 ['skia_os != "win"', { | 9 ['skia_os != "win"', { |
10 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 10 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'core.gyp:*', | 87 'core.gyp:*', |
88 'utils.gyp:utils', | 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 '../include/private', |
97 '../src/core', | 98 '../src/core', |
98 '../src/gpu', | 99 '../src/gpu', |
99 '../src/image/', | 100 '../src/image/', |
100 ], | 101 ], |
101 'sources': [ | 102 'sources': [ |
102 '<@(skgpu_sources)', | 103 '<@(skgpu_sources)', |
103 '<@(skgpu_native_gl_sources)', | 104 '<@(skgpu_native_gl_sources)', |
104 '<@(skgpu_angle_gl_sources)', | 105 '<@(skgpu_angle_gl_sources)', |
105 '<@(skgpu_mesa_gl_sources)', | 106 '<@(skgpu_mesa_gl_sources)', |
106 '<@(skgpu_debug_gl_sources)', | 107 '<@(skgpu_debug_gl_sources)', |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 'libraries': [ | 220 'libraries': [ |
220 '-lGLESv2', | 221 '-lGLESv2', |
221 '-lEGL', | 222 '-lEGL', |
222 ], | 223 ], |
223 }, | 224 }, |
224 }], | 225 }], |
225 ], | 226 ], |
226 }, | 227 }, |
227 ], | 228 ], |
228 } | 229 } |
OLD | NEW |