Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: ui/gl/gl.gyp

Issue 212933009: ui: Refactor GLImageEGL for usage by targets other than EGL_NATIVE_BUFFER_ANDROID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698