| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 'include_dirs': [ | 189 'include_dirs': [ |
| 190 '<(DEPTH)/third_party/khronos', | 190 '<(DEPTH)/third_party/khronos', |
| 191 ], | 191 ], |
| 192 }], | 192 }], |
| 193 ['OS in ("android", "linux")', { | 193 ['OS in ("android", "linux")', { |
| 194 'sources': [ | 194 'sources': [ |
| 195 'gl_implementation_osmesa.cc', | 195 'gl_implementation_osmesa.cc', |
| 196 'gl_implementation_osmesa.h', | 196 'gl_implementation_osmesa.h', |
| 197 ], | 197 ], |
| 198 }], | 198 }], |
| 199 ['OS=="linux"', { |
| 200 'sources': [ |
| 201 'gl_image_linux_dma_buffer.cc', |
| 202 'gl_image_linux_dma_buffer.h', |
| 203 ], |
| 204 }], |
| 199 ['use_x11 == 1', { | 205 ['use_x11 == 1', { |
| 200 'sources': [ | 206 'sources': [ |
| 201 'gl_context_glx.cc', | 207 'gl_context_glx.cc', |
| 202 'gl_context_glx.h', | 208 'gl_context_glx.h', |
| 203 'gl_glx_api_implementation.cc', | 209 'gl_glx_api_implementation.cc', |
| 204 'gl_glx_api_implementation.h', | 210 'gl_glx_api_implementation.h', |
| 205 'gl_image_glx.cc', | 211 'gl_image_glx.cc', |
| 206 'gl_image_glx.h', | 212 'gl_image_glx.h', |
| 207 'gl_surface_glx.cc', | 213 'gl_surface_glx.cc', |
| 208 'gl_surface_glx.h', | 214 'gl_surface_glx.h', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ], | 369 ], |
| 364 'variables': { | 370 'variables': { |
| 365 'jni_gen_package': 'ui/gl', | 371 'jni_gen_package': 'ui/gl', |
| 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 |