Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Unified Diff: third_party/openmax/openmax.gyp

Issue 391030: Test program for OpenMAX video decoding (Closed)
Patch Set: comments Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« media/omx/omx_test.cc ('K') | « media/omx/omx_video_decoder.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/openmax/openmax.gyp
diff --git a/third_party/openmax/openmax.gyp b/third_party/openmax/openmax.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..aeca369fa67aa0ab66bb139c9e94c109381e651f
--- /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',
+ ],
+ },
+ },
+ },
+ ],
+}
« media/omx/omx_test.cc ('K') | « media/omx/omx_video_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698