| 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': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 'sources': [ | 285 'sources': [ |
| 286 'common/native_web_keyboard_event_views.cc', | 286 'common/native_web_keyboard_event_views.cc', |
| 287 ], | 287 ], |
| 288 }], | 288 }], |
| 289 ['enable_gpu==1', { | 289 ['enable_gpu==1', { |
| 290 'dependencies': [ | 290 'dependencies': [ |
| 291 '../gpu/gpu.gyp:command_buffer_service', | 291 '../gpu/gpu.gyp:command_buffer_service', |
| 292 ], | 292 ], |
| 293 }], | 293 }], |
| 294 ['target_arch=="arm"', { | 294 ['target_arch=="arm"', { |
| 295 'dependencies': [ |
| 296 '../media/media.gyp:media', |
| 297 ], |
| 295 'sources': [ | 298 'sources': [ |
| 296 'common/gpu/gles2_texture_to_egl_image_translator.cc', | 299 'common/gpu/gles2_texture_to_egl_image_translator.cc', |
| 297 'common/gpu/gles2_texture_to_egl_image_translator.h', | 300 'common/gpu/gles2_texture_to_egl_image_translator.h', |
| 298 'common/gpu/omx_video_decode_accelerator.cc', | 301 'common/gpu/omx_video_decode_accelerator.cc', |
| 299 'common/gpu/omx_video_decode_accelerator.h', | 302 'common/gpu/omx_video_decode_accelerator.h', |
| 300 ], | 303 ], |
| 301 'include_dirs': [ | 304 'include_dirs': [ |
| 302 '<(DEPTH)/third_party/angle/include', | 305 '<(DEPTH)/third_party/angle/include', |
| 303 '<(DEPTH)/third_party/openmax/il', | 306 '<(DEPTH)/third_party/openmax/il', |
| 304 ], | 307 ], |
| 305 'link_settings': { | 308 'link_settings': { |
| 306 'libraries': [ | 309 'libraries': [ |
| 307 '-lEGL', | 310 '-lEGL', |
| 308 '-lGLESv2', | 311 '-lGLESv2', |
| 309 ], | 312 ], |
| 310 }, | 313 }, |
| 311 }], | 314 }], |
| 312 ], | 315 ], |
| 313 }, | 316 }, |
| 314 ], | 317 ], |
| 318 |
| 319 'conditions': [ |
| 320 ['target_arch=="arm"', { |
| 321 'targets': [ |
| 322 { |
| 323 'target_name': 'omx_video_decode_accelerator_unittest', |
| 324 'type': 'executable', |
| 325 'dependencies': [ |
| 326 'content_common', |
| 327 '../testing/gtest.gyp:gtest', |
| 328 '../testing/gtest.gyp:gtest_main', |
| 329 ], |
| 330 'include_dirs': [ |
| 331 '<(DEPTH)/third_party/angle/include', |
| 332 '<(DEPTH)/third_party/openmax/il', |
| 333 ], |
| 334 'sources': [ |
| 335 'common/gpu/omx_video_decode_accelerator_unittest.cc', |
| 336 ], |
| 337 } |
| 338 ], |
| 339 }, |
| 340 ], |
| 341 ], |
| 315 } | 342 } |
| OLD | NEW |