| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 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 | 8 |
| 9 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 if (is_clang) { | 23 if (is_clang) { |
| 24 # Suppress warnings from Chrome's Clang plugins. | 24 # Suppress warnings from Chrome's Clang plugins. |
| 25 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 25 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 26 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 26 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 27 } | 27 } |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "..:webrtc_common", | 30 "..:webrtc_common", |
| 31 "../api:call_api", | 31 "../api:call_api", |
| 32 "../modules/audio_device", |
| 32 "../system_wrappers", | 33 "../system_wrappers", |
| 33 "../voice_engine", | 34 "../voice_engine", |
| 34 ] | 35 ] |
| 35 } | 36 } |
| 36 if (rtc_include_tests) { | 37 if (rtc_include_tests) { |
| 37 rtc_source_set("audio_tests") { | 38 rtc_source_set("audio_tests") { |
| 38 testonly = true | 39 testonly = true |
| 39 sources = [ | 40 sources = [ |
| 40 "audio_receive_stream_unittest.cc", | 41 "audio_receive_stream_unittest.cc", |
| 41 "audio_send_stream_unittest.cc", | 42 "audio_send_stream_unittest.cc", |
| 42 "audio_state_unittest.cc", | 43 "audio_state_unittest.cc", |
| 43 ] | 44 ] |
| 44 deps = [ | 45 deps = [ |
| 45 ":audio", | 46 ":audio", |
| 46 "//testing/gmock", | 47 "//testing/gmock", |
| 47 "//testing/gtest", | 48 "//testing/gtest", |
| 48 ] | 49 ] |
| 49 if (is_clang) { | 50 if (is_clang) { |
| 50 # Suppress warnings from the Chromium Clang plugin. | 51 # Suppress warnings from the Chromium Clang plugin. |
| 51 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 52 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 52 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 53 } | 54 } |
| 54 } | 55 } |
| 55 } | 56 } |
| OLD | NEW |