| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'system_monitor_posix.cc', | 275 'system_monitor_posix.cc', |
| 276 ], | 276 ], |
| 277 'defines': [ | 277 'defines': [ |
| 278 'GL_GLEXT_PROTOTYPES', | 278 'GL_GLEXT_PROTOTYPES', |
| 279 'EGL_EGLEXT_PROTOTYPES', | 279 'EGL_EGLEXT_PROTOTYPES', |
| 280 ], | 280 ], |
| 281 }], | 281 }], |
| 282 ['OS!="android"', { | 282 ['OS!="android"', { |
| 283 'sources/': [ ['exclude', '^android/'] ], | 283 'sources/': [ ['exclude', '^android/'] ], |
| 284 }], | 284 }], |
| 285 ['use_ozone==1', { |
| 286 'dependencies': [ |
| 287 '../ozone/ozone.gyp:ozone', |
| 288 ], |
| 289 }], |
| 285 ], | 290 ], |
| 286 }, | 291 }, |
| 287 { | 292 { |
| 288 'target_name': 'gl_unittest_utils', | 293 'target_name': 'gl_unittest_utils', |
| 289 'type': 'static_library', | 294 'type': 'static_library', |
| 290 'variables': { | 295 'variables': { |
| 291 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl', | 296 'gl_binding_output_dir': '<(SHARED_INTERMEDIATE_DIR)/ui/gl', |
| 292 }, | 297 }, |
| 293 'dependencies': [ | 298 'dependencies': [ |
| 294 '../../testing/gmock.gyp:gmock', | 299 '../../testing/gmock.gyp:gmock', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 ], | 340 ], |
| 336 'variables': { | 341 'variables': { |
| 337 'jni_gen_package': 'ui/gl', | 342 'jni_gen_package': 'ui/gl', |
| 338 }, | 343 }, |
| 339 'includes': [ '../../build/jni_generator.gypi' ], | 344 'includes': [ '../../build/jni_generator.gypi' ], |
| 340 }, | 345 }, |
| 341 ], | 346 ], |
| 342 }], | 347 }], |
| 343 ], | 348 ], |
| 344 } | 349 } |
| OLD | NEW |