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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'include_dirs': [ | 191 'include_dirs': [ |
192 '<(DEPTH)/third_party/khronos', | 192 '<(DEPTH)/third_party/khronos', |
193 ], | 193 ], |
194 }], | 194 }], |
195 ['OS in ("android", "linux")', { | 195 ['OS in ("android", "linux")', { |
196 'sources': [ | 196 'sources': [ |
197 'gl_implementation_osmesa.cc', | 197 'gl_implementation_osmesa.cc', |
198 'gl_implementation_osmesa.h', | 198 'gl_implementation_osmesa.h', |
199 ], | 199 ], |
200 }], | 200 }], |
| 201 ['OS=="linux"', { |
| 202 'sources': [ |
| 203 'gl_image_linux_dma_buffer.cc', |
| 204 'gl_image_linux_dma_buffer.h', |
| 205 ], |
| 206 }], |
201 ['use_x11 == 1', { | 207 ['use_x11 == 1', { |
202 'sources': [ | 208 'sources': [ |
203 'gl_context_glx.cc', | 209 'gl_context_glx.cc', |
204 'gl_context_glx.h', | 210 'gl_context_glx.h', |
205 'gl_glx_api_implementation.cc', | 211 'gl_glx_api_implementation.cc', |
206 'gl_glx_api_implementation.h', | 212 'gl_glx_api_implementation.h', |
207 'gl_image_glx.cc', | 213 'gl_image_glx.cc', |
208 'gl_image_glx.h', | 214 'gl_image_glx.h', |
209 'gl_surface_glx.cc', | 215 'gl_surface_glx.cc', |
210 'gl_surface_glx.h', | 216 'gl_surface_glx.h', |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 'variables': { | 369 'variables': { |
364 'jni_gen_package': 'ui/gl', | 370 'jni_gen_package': 'ui/gl', |
365 'jni_generator_ptr_type': 'long', | 371 'jni_generator_ptr_type': 'long', |
366 }, | 372 }, |
367 'includes': [ '../../build/jni_generator.gypi' ], | 373 'includes': [ '../../build/jni_generator.gypi' ], |
368 }, | 374 }, |
369 ], | 375 ], |
370 }], | 376 }], |
371 ], | 377 ], |
372 } | 378 } |
OLD | NEW |