OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'rtc_sound', | 13 'target_name': 'rtc_sound', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'dependencies': [ | 15 'dependencies': [ |
16 '<(webrtc_root)/base/base.gyp:rtc_base', | 16 '<(webrtc_root)/base/base.gyp:rtc_base', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'automaticallychosensoundsystem.h', | 19 'automaticallychosensoundsystem.h', |
20 'nullsoundsystem.cc', | 20 'nullsoundsystem.cc', |
21 'nullsoundsystem.h', | 21 'nullsoundsystem.h', |
22 'nullsoundsystemfactory.cc', | 22 'nullsoundsystemfactory.cc', |
23 'nullsoundsystemfactory.h', | 23 'nullsoundsystemfactory.h', |
24 'platformsoundsystem.cc', | 24 'platformsoundsystem.cc', |
25 'platformsoundsystem.h', | 25 'platformsoundsystem.h', |
26 'platformsoundsystemfactory.cc', | 26 'platformsoundsystemfactory.cc', |
27 'platformsoundsystemfactory.h', | 27 'platformsoundsystemfactory.h', |
28 'sounddevicelocator.h', | 28 'sounddevicelocator.h', |
| 29 'soundinputstreaminterface.cc', |
29 'soundinputstreaminterface.h', | 30 'soundinputstreaminterface.h', |
| 31 'soundoutputstreaminterface.cc', |
30 'soundoutputstreaminterface.h', | 32 'soundoutputstreaminterface.h', |
31 'soundsystemfactory.h', | 33 'soundsystemfactory.h', |
32 'soundsysteminterface.cc', | 34 'soundsysteminterface.cc', |
33 'soundsysteminterface.h', | 35 'soundsysteminterface.h', |
34 'soundsystemproxy.cc', | 36 'soundsystemproxy.cc', |
35 'soundsystemproxy.h', | 37 'soundsystemproxy.h', |
36 ], | 38 ], |
37 'conditions': [ | 39 'conditions': [ |
38 ['OS=="linux"', { | 40 ['OS=="linux"', { |
39 'sources': [ | 41 'sources': [ |
40 'alsasoundsystem.cc', | 42 'alsasoundsystem.cc', |
41 'alsasoundsystem.h', | 43 'alsasoundsystem.h', |
42 'alsasymboltable.cc', | 44 'alsasymboltable.cc', |
43 'alsasymboltable.h', | 45 'alsasymboltable.h', |
44 'linuxsoundsystem.cc', | 46 'linuxsoundsystem.cc', |
45 'linuxsoundsystem.h', | 47 'linuxsoundsystem.h', |
46 'pulseaudiosoundsystem.cc', | 48 'pulseaudiosoundsystem.cc', |
47 'pulseaudiosoundsystem.h', | 49 'pulseaudiosoundsystem.h', |
48 'pulseaudiosymboltable.cc', | 50 'pulseaudiosymboltable.cc', |
49 'pulseaudiosymboltable.h', | 51 'pulseaudiosymboltable.h', |
50 ], | 52 ], |
51 }], | 53 }], |
52 ], | 54 ], |
53 }, | 55 }, |
54 ], | 56 ], |
55 } | 57 } |
OLD | NEW |