Chromium Code Reviews| 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 'targets': [ | |
| 7 { | |
| 8 # OpenMAX IL level of API. | |
| 9 'target_name': 'il', | |
| 10 'type': 'none', | |
| 11 'sources': [ | |
| 12 'il/OMX_Audio.h', | |
| 13 'il/OMX_Component.h', | |
| 14 'il/OMX_ContentPipe.h', | |
| 15 'il/OMX_Core.h', | |
| 16 'il/OMX_Image.h', | |
| 17 'il/OMX_Index.h', | |
| 18 'il/OMX_IVCommon.h', | |
| 19 'il/OMX_Other.h', | |
| 20 'il/OMX_Types.h', | |
| 21 'il/OMX_Video.h', | |
| 22 ], | |
| 23 'direct_dependent_settings': { | |
| 24 'include_dirs': [ | |
| 25 'il', | |
| 26 ], | |
| 27 'link_settings': { | |
| 28 'libraries': [ | |
| 29 '-lOmxCore', | |
| 30 # We need dl for dlopen() and friends. | |
| 31 '-ldl', | |
| 32 ], | |
| 33 }, | |
| 34 }, | |
| 35 }, | |
| 36 ], | |
| 37 } | |
| OLD | NEW |