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 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 "../../system_wrappers", | 33 "../../system_wrappers", |
34 "../utility", | 34 "../utility", |
35 ] | 35 ] |
36 | 36 |
37 sources = [ | 37 sources = [ |
38 "audio_device_buffer.cc", | 38 "audio_device_buffer.cc", |
39 "audio_device_buffer.h", | 39 "audio_device_buffer.h", |
40 "audio_device_config.h", | 40 "audio_device_config.h", |
41 "audio_device_generic.cc", | 41 "audio_device_generic.cc", |
42 "audio_device_generic.h", | 42 "audio_device_generic.h", |
| 43 "audio_transport.cc", |
43 "dummy/audio_device_dummy.cc", | 44 "dummy/audio_device_dummy.cc", |
44 "dummy/audio_device_dummy.h", | 45 "dummy/audio_device_dummy.h", |
45 "dummy/file_audio_device.cc", | 46 "dummy/file_audio_device.cc", |
46 "dummy/file_audio_device.h", | 47 "dummy/file_audio_device.h", |
47 "fine_audio_buffer.cc", | 48 "fine_audio_buffer.cc", |
48 "fine_audio_buffer.h", | 49 "fine_audio_buffer.h", |
49 "include/audio_device.h", | 50 "include/audio_device.h", |
50 "include/audio_device_defines.h", | 51 "include/audio_device_defines.h", |
51 ] | 52 ] |
52 | 53 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "../..:common_inherited_config", | 204 "../..:common_inherited_config", |
204 ":audio_device_config", | 205 ":audio_device_config", |
205 ] | 206 ] |
206 | 207 |
207 if (is_clang) { | 208 if (is_clang) { |
208 # Suppress warnings from Chrome's Clang plugins. | 209 # Suppress warnings from Chrome's Clang plugins. |
209 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 210 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
210 configs -= [ "//build/config/clang:find_bad_constructs" ] | 211 configs -= [ "//build/config/clang:find_bad_constructs" ] |
211 } | 212 } |
212 } | 213 } |
OLD | NEW |