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

Side by Side Diff: media/media_lib.scons

Issue 18380: This is the frozen interface definition for the media pipeline, filters, and ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 months 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 | Annotate | Revision Log
« media/base/filters.h ('K') | « media/base/pipeline_impl.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
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 __doc__ = """ 5 __doc__ = """
6 Configuration for building media.lib / libmedia.a. 6 Configuration for building media.lib / libmedia.a.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
(...skipping 10 matching lines...) Expand all
21 '$CHROME_SRC_DIR', 21 '$CHROME_SRC_DIR',
22 ], 22 ],
23 ) 23 )
24 24
25 # These net files work on *all* platforms; files that don't work 25 # These net files work on *all* platforms; files that don't work
26 # cross-platform live below. 26 # cross-platform live below.
27 input_files = [ 27 input_files = [
28 'base/data_buffer.cc', 28 'base/data_buffer.cc',
29 'base/filter_host_impl.cc', 29 'base/filter_host_impl.cc',
30 'base/media_format.cc', 30 'base/media_format.cc',
31 'base/pipeline_impl.cc',
31 ] 32 ]
32 33
33 if env.Bit('windows'): 34 if env.Bit('windows'):
34 input_files.extend([ 35 input_files.extend([
35 ]) 36 ])
36 37
37 if env.Bit('mac'): 38 if env.Bit('mac'):
38 input_files.extend([ 39 input_files.extend([
39 ]) 40 ])
40 41
41 if env.Bit('linux'): 42 if env.Bit('linux'):
42 input_files.extend([ 43 input_files.extend([
43 ]) 44 ])
44 45
45 if env.Bit('posix'): 46 if env.Bit('posix'):
46 input_files.extend([ 47 input_files.extend([
47 ]) 48 ])
48 49
49 env.ChromeLibrary('media', input_files) 50 env.ChromeLibrary('media', input_files)
50 51
51 env.ChromeMSVSProject('$MEDIA_DIR/build/media.vcproj', 52 env.ChromeMSVSProject('$MEDIA_DIR/build/media.vcproj',
52 guid='{6AE76406-B03B-11DD-94B1-80B556D89593}') 53 guid='{6AE76406-B03B-11DD-94B1-80B556D89593}')
OLDNEW
« media/base/filters.h ('K') | « media/base/pipeline_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698