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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 ], | 43 ], |
44 'sources': [ | 44 'sources': [ |
45 'android/gl_jni_registrar.cc', | 45 'android/gl_jni_registrar.cc', |
46 'android/gl_jni_registrar.h', | 46 'android/gl_jni_registrar.h', |
47 'android/scoped_java_surface.cc', | 47 'android/scoped_java_surface.cc', |
48 'android/scoped_java_surface.h', | 48 'android/scoped_java_surface.h', |
49 'android/surface_texture.cc', | 49 'android/surface_texture.cc', |
50 'android/surface_texture.h', | 50 'android/surface_texture.h', |
51 'android/surface_texture_listener.cc', | 51 'android/surface_texture_listener.cc', |
52 'android/surface_texture_listener.h', | 52 'android/surface_texture_listener.h', |
| 53 'android/surface_texture_tracker.cc', |
| 54 'android/surface_texture_tracker.h', |
53 'gl_bindings.h', | 55 'gl_bindings.h', |
54 'gl_bindings_skia_in_process.cc', | 56 'gl_bindings_skia_in_process.cc', |
55 'gl_bindings_skia_in_process.h', | 57 'gl_bindings_skia_in_process.h', |
56 'gl_context.cc', | 58 'gl_context.cc', |
57 'gl_context.h', | 59 'gl_context.h', |
58 'gl_context_android.cc', | 60 'gl_context_android.cc', |
59 'gl_context_mac.mm', | 61 'gl_context_mac.mm', |
60 'gl_context_ozone.cc', | 62 'gl_context_ozone.cc', |
61 'gl_context_osmesa.cc', | 63 'gl_context_osmesa.cc', |
62 'gl_context_osmesa.h', | 64 'gl_context_osmesa.h', |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 ], | 270 ], |
269 }, | 271 }, |
270 }], | 272 }], |
271 ['OS=="android"', { | 273 ['OS=="android"', { |
272 'dependencies': [ | 274 'dependencies': [ |
273 'gl_jni_headers', | 275 'gl_jni_headers', |
274 ], | 276 ], |
275 'sources': [ | 277 'sources': [ |
276 'gl_image_egl.cc', | 278 'gl_image_egl.cc', |
277 'gl_image_egl.h', | 279 'gl_image_egl.h', |
| 280 'gl_image_surface_texture.cc', |
| 281 'gl_image_surface_texture.h', |
278 ], | 282 ], |
279 'link_settings': { | 283 'link_settings': { |
280 'libraries': [ | 284 'libraries': [ |
281 '-landroid', | 285 '-landroid', |
282 ], | 286 ], |
283 }, | 287 }, |
284 'sources!': [ | 288 'sources!': [ |
285 'system_monitor_posix.cc', | 289 'system_monitor_posix.cc', |
286 ], | 290 ], |
287 'defines': [ | 291 'defines': [ |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 'variables': { | 358 'variables': { |
355 'jni_gen_package': 'ui/gl', | 359 'jni_gen_package': 'ui/gl', |
356 'jni_generator_ptr_type': 'long', | 360 'jni_generator_ptr_type': 'long', |
357 }, | 361 }, |
358 'includes': [ '../../build/jni_generator.gypi' ], | 362 'includes': [ '../../build/jni_generator.gypi' ], |
359 }, | 363 }, |
360 ], | 364 ], |
361 }], | 365 }], |
362 ], | 366 ], |
363 } | 367 } |
OLD | NEW |