OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'include_dirs': [ | 187 'include_dirs': [ |
188 '<(DEPTH)/third_party/khronos', | 188 '<(DEPTH)/third_party/khronos', |
189 ], | 189 ], |
190 }], | 190 }], |
191 ['OS in ("android", "linux")', { | 191 ['OS in ("android", "linux")', { |
192 'sources': [ | 192 'sources': [ |
193 'gl_implementation_osmesa.cc', | 193 'gl_implementation_osmesa.cc', |
194 'gl_implementation_osmesa.h', | 194 'gl_implementation_osmesa.h', |
195 ], | 195 ], |
196 }], | 196 }], |
| 197 ['OS=="linux"', { |
| 198 'sources': [ |
| 199 'gl_image_linux_dma_buffer.cc', |
| 200 'gl_image_linux_dma_buffer.h', |
| 201 ], |
| 202 }], |
197 ['use_x11 == 1', { | 203 ['use_x11 == 1', { |
198 'sources': [ | 204 'sources': [ |
199 'gl_context_glx.cc', | 205 'gl_context_glx.cc', |
200 'gl_context_glx.h', | 206 'gl_context_glx.h', |
201 'gl_glx_api_implementation.cc', | 207 'gl_glx_api_implementation.cc', |
202 'gl_glx_api_implementation.h', | 208 'gl_glx_api_implementation.h', |
203 'gl_image_glx.cc', | 209 'gl_image_glx.cc', |
204 'gl_image_glx.h', | 210 'gl_image_glx.h', |
205 'gl_surface_glx.cc', | 211 'gl_surface_glx.cc', |
206 'gl_surface_glx.h', | 212 'gl_surface_glx.h', |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 'variables': { | 367 'variables': { |
362 'jni_gen_package': 'ui/gl', | 368 'jni_gen_package': 'ui/gl', |
363 'jni_generator_ptr_type': 'long', | 369 'jni_generator_ptr_type': 'long', |
364 }, | 370 }, |
365 'includes': [ '../../build/jni_generator.gypi' ], | 371 'includes': [ '../../build/jni_generator.gypi' ], |
366 }, | 372 }, |
367 ], | 373 ], |
368 }], | 374 }], |
369 ], | 375 ], |
370 } | 376 } |
OLD | NEW |