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 30 matching lines...) Expand all Loading... | |
41 if (rtc_include_tests) { | 41 if (rtc_include_tests) { |
42 rtc_source_set("audio_tests") { | 42 rtc_source_set("audio_tests") { |
43 testonly = true | 43 testonly = true |
44 sources = [ | 44 sources = [ |
45 "audio_receive_stream_unittest.cc", | 45 "audio_receive_stream_unittest.cc", |
46 "audio_send_stream_unittest.cc", | 46 "audio_send_stream_unittest.cc", |
47 "audio_state_unittest.cc", | 47 "audio_state_unittest.cc", |
48 ] | 48 ] |
49 deps = [ | 49 deps = [ |
50 ":audio", | 50 ":audio", |
51 "../base:rtc_base_approved", | |
aleloi
2016/11/14 16:39:58
Missed dep according to GN.
| |
51 "../modules/audio_device:mock_audio_device", | 52 "../modules/audio_device:mock_audio_device", |
53 "../test:test_common", | |
aleloi
2016/11/14 16:39:58
For including mock_voice_engine.
| |
52 "//testing/gmock", | 54 "//testing/gmock", |
53 "//testing/gtest", | 55 "//testing/gtest", |
54 ] | 56 ] |
55 if (!build_with_chromium && is_clang) { | 57 if (!build_with_chromium && is_clang) { |
56 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 58 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
57 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 59 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
58 } | 60 } |
59 } | 61 } |
60 } | 62 } |
OLD | NEW |