OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'player_x11_renderer%': 'x11', | 8 'player_x11_renderer%': 'x11', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'media', | 12 'target_name': 'media', |
13 'type': '<(library)', | 13 'type': '<(library)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
16 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 16 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
17 ], | 17 ], |
18 'include_dirs': [ | 18 'include_dirs': [ |
19 '..', | 19 '..', |
20 ], | 20 ], |
21 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', | 21 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', |
22 'sources': [ | 22 'sources': [ |
23 'audio/audio_io.h', | 23 'audio/audio_io.h', |
24 'audio/audio_input_controller.cc', | 24 'audio/audio_input_controller.cc', |
25 'audio/audio_input_controller.h', | 25 'audio/audio_input_controller.h', |
| 26 'audio/audio_manager.h', |
| 27 'audio/audio_manager.cc', |
| 28 'audio/audio_manager_base.h', |
| 29 'audio/audio_manager_base.cc', |
26 'audio/audio_output_controller.cc', | 30 'audio/audio_output_controller.cc', |
27 'audio/audio_output_controller.h', | 31 'audio/audio_output_controller.h', |
28 'audio/audio_util.cc', | 32 'audio/audio_util.cc', |
29 'audio/audio_util.h', | 33 'audio/audio_util.h', |
30 'audio/fake_audio_input_stream.cc', | 34 'audio/fake_audio_input_stream.cc', |
31 'audio/fake_audio_input_stream.h', | 35 'audio/fake_audio_input_stream.h', |
32 'audio/fake_audio_output_stream.cc', | 36 'audio/fake_audio_output_stream.cc', |
33 'audio/fake_audio_output_stream.h', | 37 'audio/fake_audio_output_stream.h', |
34 'audio/linux/audio_manager_linux.cc', | 38 'audio/linux/audio_manager_linux.cc', |
35 'audio/linux/audio_manager_linux.h', | 39 'audio/linux/audio_manager_linux.h', |
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 ], | 629 ], |
626 }], | 630 }], |
627 ], | 631 ], |
628 } | 632 } |
629 | 633 |
630 # Local Variables: | 634 # Local Variables: |
631 # tab-width:2 | 635 # tab-width:2 |
632 # indent-tabs-mode:nil | 636 # indent-tabs-mode:nil |
633 # End: | 637 # End: |
634 # vim: set expandtab tabstop=2 shiftwidth=2: | 638 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |