From 95ff808aa05c3de690fed32e92a940a6877cd3ed Mon Sep 17 00:00:00 2001 From: "hclam@chromium.org" Date: Fri, 13 Nov 2009 22:21:01 +0000 Subject: 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 --- third_party/openmax/openmax.gyp | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 third_party/openmax/openmax.gyp (limited to 'third_party') 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', + ], + }, + }, + }, + ], +} -- cgit v1.1