| OLD | NEW |
| 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 Loading... |
| 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}') |
| OLD | NEW |