| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', | 271 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', |
| 272 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 272 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 273 ], | 273 ], |
| 274 }, | 274 }, |
| 275 }], | 275 }], |
| 276 ['OS=="android"', { | 276 ['OS=="android"', { |
| 277 'dependencies': [ | 277 'dependencies': [ |
| 278 'gl_jni_headers', | 278 'gl_jni_headers', |
| 279 ], | 279 ], |
| 280 'sources': [ | 280 'sources': [ |
| 281 'gl_image_android_native_buffer.cc', | |
| 282 'gl_image_android_native_buffer.h', | |
| 283 'gl_image_surface_texture.cc', | 281 'gl_image_surface_texture.cc', |
| 284 'gl_image_surface_texture.h', | 282 'gl_image_surface_texture.h', |
| 285 ], | 283 ], |
| 286 'link_settings': { | 284 'link_settings': { |
| 287 'libraries': [ | 285 'libraries': [ |
| 288 '-landroid', | 286 '-landroid', |
| 289 ], | 287 ], |
| 290 }, | 288 }, |
| 291 'sources!': [ | 289 'sources!': [ |
| 292 'system_monitor_posix.cc', | 290 'system_monitor_posix.cc', |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 ], | 363 ], |
| 366 'variables': { | 364 'variables': { |
| 367 'jni_gen_package': 'ui/gl', | 365 'jni_gen_package': 'ui/gl', |
| 368 }, | 366 }, |
| 369 'includes': [ '../../build/jni_generator.gypi' ], | 367 'includes': [ '../../build/jni_generator.gypi' ], |
| 370 }, | 368 }, |
| 371 ], | 369 ], |
| 372 }], | 370 }], |
| 373 ], | 371 ], |
| 374 } | 372 } |
| OLD | NEW |