| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 'gl_context_egl.cc', | 131 'gl_context_egl.cc', |
| 132 'gl_context_egl.h', | 132 'gl_context_egl.h', |
| 133 'gl_egl_api_implementation.cc', | 133 'gl_egl_api_implementation.cc', |
| 134 'gl_egl_api_implementation.h', | 134 'gl_egl_api_implementation.h', |
| 135 'gl_fence_egl.cc', | 135 'gl_fence_egl.cc', |
| 136 'gl_fence_egl.h', | 136 'gl_fence_egl.h', |
| 137 'gl_image_egl.cc', | 137 'gl_image_egl.cc', |
| 138 'gl_image_egl.h', | 138 'gl_image_egl.h', |
| 139 'gl_surface_egl.cc', | 139 'gl_surface_egl.cc', |
| 140 'gl_surface_egl.h', | 140 'gl_surface_egl.h', |
| 141 'gl_surface_egl_android.cc', | |
| 142 'gl_surface_egl_ozone.cc', | |
| 143 'gl_surface_egl_win.cc', | |
| 144 ], | 141 ], |
| 145 'direct_dependent_settings': { | 142 'direct_dependent_settings': { |
| 146 'defines': [ | 143 'defines': [ |
| 147 'USE_EGL', | 144 'USE_EGL', |
| 148 ], | 145 ], |
| 149 }, | 146 }, |
| 150 'defines': [ | 147 'defines': [ |
| 151 'USE_EGL', | 148 'USE_EGL', |
| 152 ], | 149 ], |
| 153 'include_dirs': [ | 150 'include_dirs': [ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 'system_monitor_posix.cc', | 280 'system_monitor_posix.cc', |
| 284 ], | 281 ], |
| 285 'defines': [ | 282 'defines': [ |
| 286 'GL_GLEXT_PROTOTYPES', | 283 'GL_GLEXT_PROTOTYPES', |
| 287 'EGL_EGLEXT_PROTOTYPES', | 284 'EGL_EGLEXT_PROTOTYPES', |
| 288 ], | 285 ], |
| 289 }], | 286 }], |
| 290 ['OS!="android"', { | 287 ['OS!="android"', { |
| 291 'sources/': [ ['exclude', '^android/'] ], | 288 'sources/': [ ['exclude', '^android/'] ], |
| 292 }], | 289 }], |
| 293 ['use_ozone==1', { | |
| 294 'sources': [ | |
| 295 'gl_image_ozone_native_pixmap.cc', | |
| 296 'gl_image_ozone_native_pixmap.h', | |
| 297 ], | |
| 298 'dependencies': [ | |
| 299 '../ozone/ozone.gyp:ozone', | |
| 300 '../ozone/ozone.gyp:ozone_base', | |
| 301 ], | |
| 302 }], | |
| 303 ], | 290 ], |
| 304 }, | 291 }, |
| 305 { | 292 { |
| 306 'target_name': 'gl_unittest_utils', | 293 'target_name': 'gl_unittest_utils', |
| 307 'type': 'static_library', | 294 'type': 'static_library', |
| 308 'dependencies': [ | 295 'dependencies': [ |
| 309 '../../testing/gmock.gyp:gmock', | 296 '../../testing/gmock.gyp:gmock', |
| 310 '../../third_party/khronos/khronos.gyp:khronos_headers', | 297 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 311 'gl', | 298 'gl', |
| 312 'init/gl_init.gyp:gl_init', | 299 'init/gl_init.gyp:gl_init', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 ], | 367 ], |
| 381 'variables': { | 368 'variables': { |
| 382 'jni_gen_package': 'ui/gl', | 369 'jni_gen_package': 'ui/gl', |
| 383 }, | 370 }, |
| 384 'includes': [ '../../build/jni_generator.gypi' ], | 371 'includes': [ '../../build/jni_generator.gypi' ], |
| 385 }, | 372 }, |
| 386 ], | 373 ], |
| 387 }], | 374 }], |
| 388 ], | 375 ], |
| 389 } | 376 } |
| OLD | NEW |