| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'conditions': [ | |
| 10 ['OS=="linux"', { | |
| 11 'targets' : [ | |
| 12 { | |
| 13 'target_name': 'omx_test', | |
| 14 'type': 'executable', | |
| 15 'dependencies': [ | |
| 16 '../../base/base.gyp:base', | |
| 17 '../../third_party/openmax/openmax.gyp:il', | |
| 18 ], | |
| 19 'sources': [ | |
| 20 'input_buffer.cc', | |
| 21 'input_buffer.h', | |
| 22 'omx_test.cc', | |
| 23 'omx_video_decoder.cc', | |
| 24 'omx_video_decoder.h', | |
| 25 ], | |
| 26 }, | |
| 27 ], | |
| 28 }], | |
| 29 ], | |
| 30 } | |
| OLD | NEW |