OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 'omx/omx_unittest.cc', | 327 'omx/omx_unittest.cc', |
328 'omx/run_all_unittests.cc', | 328 'omx/run_all_unittests.cc', |
329 ], | 329 ], |
330 }, | 330 }, |
331 { | 331 { |
332 'target_name': 'omx_wrapper', | 332 'target_name': 'omx_wrapper', |
333 'type': '<(library)', | 333 'type': '<(library)', |
334 'dependencies': [ | 334 'dependencies': [ |
335 '../base/base.gyp:base', | 335 '../base/base.gyp:base', |
336 '../third_party/openmax/openmax.gyp:il', | 336 '../third_party/openmax/openmax.gyp:il', |
| 337 # TODO(wjia): remove ffmpeg |
| 338 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
337 ], | 339 ], |
338 'sources': [ | 340 'sources': [ |
339 'omx/omx_codec.cc', | 341 'filters/omx_video_decode_engine.cc', |
340 'omx/omx_codec.h', | 342 'filters/omx_video_decode_engine.cc', |
341 'omx/omx_configurator.cc', | 343 'omx/omx_configurator.cc', |
342 'omx/omx_configurator.h', | 344 'omx/omx_configurator.h', |
343 ], | 345 ], |
344 'hard_dependency': 1, | 346 'hard_dependency': 1, |
345 'export_dependent_settings': [ | 347 'export_dependent_settings': [ |
346 '../third_party/openmax/openmax.gyp:il', | 348 '../third_party/openmax/openmax.gyp:il', |
347 ], | 349 ], |
348 }, | 350 }, |
349 ], | 351 ], |
350 'conditions': [ | 352 'conditions': [ |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 ], | 447 ], |
446 }], | 448 }], |
447 ], | 449 ], |
448 } | 450 } |
449 | 451 |
450 # Local Variables: | 452 # Local Variables: |
451 # tab-width:2 | 453 # tab-width:2 |
452 # indent-tabs-mode:nil | 454 # indent-tabs-mode:nil |
453 # End: | 455 # End: |
454 # vim: set expandtab tabstop=2 shiftwidth=2: | 456 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |