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