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

Side by Side 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 unified diff | Download patch
« media/omx/omx_test.cc ('K') | « media/omx/omx_video_decoder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« 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