OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |