diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 22:21:01 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 22:21:01 +0000 |
commit | 95ff808aa05c3de690fed32e92a940a6877cd3ed (patch) | |
tree | 0fd037078b5b8b50c253bb68c11d3cabd93b2432 /third_party | |
parent | 108a96fe15de05d91fe9a0a2eb39c3edd287c123 (diff) | |
download | chromium_src-95ff808aa05c3de690fed32e92a940a6877cd3ed.zip chromium_src-95ff808aa05c3de690fed32e92a940a6877cd3ed.tar.gz chromium_src-95ff808aa05c3de690fed32e92a940a6877cd3ed.tar.bz2 |
Test program for OpenMAX video decoding
Including gyp file for openmax and the test application.
The test application will link against libOmxCore.so which is provided
by the target system.
Review URL: http://codereview.chromium.org/391030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31957 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/openmax/openmax.gyp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/third_party/openmax/openmax.gyp b/third_party/openmax/openmax.gyp new file mode 100644 index 0000000..aeca369 --- /dev/null +++ b/third_party/openmax/openmax.gyp @@ -0,0 +1,37 @@ +# Copyright (c) 2009 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + # OpenMAX IL level of API. + 'target_name': 'il', + 'type': 'none', + 'sources': [ + 'il/OMX_Audio.h', + 'il/OMX_Component.h', + 'il/OMX_ContentPipe.h', + 'il/OMX_Core.h', + 'il/OMX_Image.h', + 'il/OMX_Index.h', + 'il/OMX_IVCommon.h', + 'il/OMX_Other.h', + 'il/OMX_Types.h', + 'il/OMX_Video.h', + ], + 'direct_dependent_settings': { + 'include_dirs': [ + 'il', + ], + 'link_settings': { + 'libraries': [ + '-lOmxCore', + # We need dl for dlopen() and friends. + '-ldl', + ], + }, + }, + }, + ], +} |