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

Side by Side Diff: content/content_common.gypi

Issue 7057027: Updated OMX decoder for recent PPAPI changes, and added to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated include guards. Created 9 years, 7 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'content_common', 8 'target_name': 'content_common',
9 'type': '<(library)', 9 'type': '<(library)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ['toolkit_views==1', { 280 ['toolkit_views==1', {
281 'sources': [ 281 'sources': [
282 'common/native_web_keyboard_event_views.cc', 282 'common/native_web_keyboard_event_views.cc',
283 ], 283 ],
284 }], 284 }],
285 ['enable_gpu==1', { 285 ['enable_gpu==1', {
286 'dependencies': [ 286 'dependencies': [
287 '../gpu/gpu.gyp:command_buffer_service', 287 '../gpu/gpu.gyp:command_buffer_service',
288 ], 288 ],
289 }], 289 }],
290 ['target_arch=="arm"', {
291 'sources': [
292 'common/gpu/gles2_texture_to_egl_image_translator.cc',
293 'common/gpu/gles2_texture_to_egl_image_translator.h',
294 'common/gpu/omx_video_decode_accelerator.cc',
295 'common/gpu/omx_video_decode_accelerator.h',
296 ],
297 'include_dirs': [
298 '<(DEPTH)/third_party/openmax/il',
299 ],
300 'link_settings': {
301 'libraries': [
302 '-lEGL',
303 '-lGLESv2',
304 ],
305 },
306 }],
290 ], 307 ],
291 }, 308 },
292 ], 309 ],
293 } 310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698