OLD | NEW |
1 # Copyright 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 2015 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 import("../build/webrtc.gni") | 8 import("../build/webrtc.gni") |
9 | 9 |
10 static_library("rtc_sound") { | 10 static_library("rtc_sound") { |
(...skipping 17 matching lines...) Expand all Loading... |
28 "soundsystemproxy.h", | 28 "soundsystemproxy.h", |
29 ] | 29 ] |
30 | 30 |
31 if (is_clang) { | 31 if (is_clang) { |
32 # Suppress warnings from Chrome's Clang plugins. | 32 # Suppress warnings from Chrome's Clang plugins. |
33 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 33 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
34 configs -= [ "//build/config/clang:find_bad_constructs" ] | 34 configs -= [ "//build/config/clang:find_bad_constructs" ] |
35 } | 35 } |
36 | 36 |
37 deps = [ | 37 deps = [ |
38 "//webrtc/base:rtc_base", | 38 "../base:rtc_base", |
39 ] | 39 ] |
40 | 40 |
41 if (is_linux) { | 41 if (is_linux) { |
42 sources += [ | 42 sources += [ |
43 "alsasoundsystem.cc", | 43 "alsasoundsystem.cc", |
44 "alsasoundsystem.h", | 44 "alsasoundsystem.h", |
45 "alsasymboltable.cc", | 45 "alsasymboltable.cc", |
46 "alsasymboltable.h", | 46 "alsasymboltable.h", |
47 "linuxsoundsystem.cc", | 47 "linuxsoundsystem.cc", |
48 "linuxsoundsystem.h", | 48 "linuxsoundsystem.h", |
49 "pulseaudiosoundsystem.cc", | 49 "pulseaudiosoundsystem.cc", |
50 "pulseaudiosoundsystem.h", | 50 "pulseaudiosoundsystem.h", |
51 "pulseaudiosymboltable.cc", | 51 "pulseaudiosymboltable.cc", |
52 "pulseaudiosymboltable.h", | 52 "pulseaudiosymboltable.h", |
53 ] | 53 ] |
54 } | 54 } |
55 } | 55 } |
OLD | NEW |