| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 ], | 168 ], |
| 169 }, | 169 }, |
| 170 ], | 170 ], |
| 171 'conditions': [ | 171 'conditions': [ |
| 172 ['OS in ("win", "android", "linux")', { | 172 ['OS in ("win", "android", "linux")', { |
| 173 'sources': [ | 173 'sources': [ |
| 174 'egl_util.cc', | 174 'egl_util.cc', |
| 175 'egl_util.h', | 175 'egl_util.h', |
| 176 'gl_context_egl.cc', | 176 'gl_context_egl.cc', |
| 177 'gl_context_egl.h', | 177 'gl_context_egl.h', |
| 178 'gl_image_egl.cc', |
| 179 'gl_image_egl.h', |
| 178 'gl_surface_egl.cc', | 180 'gl_surface_egl.cc', |
| 179 'gl_surface_egl.h', | 181 'gl_surface_egl.h', |
| 180 'gl_egl_api_implementation.cc', | 182 'gl_egl_api_implementation.cc', |
| 181 'gl_egl_api_implementation.h', | 183 'gl_egl_api_implementation.h', |
| 182 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', | 184 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.cc', |
| 183 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', | 185 '<(gl_binding_output_dir)/gl_bindings_autogen_egl.h', |
| 184 ], | 186 ], |
| 185 'include_dirs': [ | 187 'include_dirs': [ |
| 186 '<(DEPTH)/third_party/khronos', | 188 '<(DEPTH)/third_party/khronos', |
| 187 ], | 189 ], |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 'libraries': [ | 268 'libraries': [ |
| 267 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 269 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 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_android_native_buffer.cc', |
| 277 'gl_image_egl.h', | 279 'gl_image_android_native_buffer.h', |
| 278 ], | 280 ], |
| 279 'link_settings': { | 281 'link_settings': { |
| 280 'libraries': [ | 282 'libraries': [ |
| 281 '-landroid', | 283 '-landroid', |
| 282 ], | 284 ], |
| 283 }, | 285 }, |
| 284 'sources!': [ | 286 'sources!': [ |
| 285 'system_monitor_posix.cc', | 287 'system_monitor_posix.cc', |
| 286 ], | 288 ], |
| 287 'defines': [ | 289 'defines': [ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 'variables': { | 361 'variables': { |
| 360 'jni_gen_package': 'ui/gl', | 362 'jni_gen_package': 'ui/gl', |
| 361 'jni_generator_ptr_type': 'long', | 363 'jni_generator_ptr_type': 'long', |
| 362 }, | 364 }, |
| 363 'includes': [ '../../build/jni_generator.gypi' ], | 365 'includes': [ '../../build/jni_generator.gypi' ], |
| 364 }, | 366 }, |
| 365 ], | 367 ], |
| 366 }], | 368 }], |
| 367 ], | 369 ], |
| 368 } | 370 } |
| OLD | NEW |