| 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 20 matching lines...) Expand all Loading... |
| 31 "monitor_module.cc", | 31 "monitor_module.cc", |
| 32 "monitor_module.h", | 32 "monitor_module.h", |
| 33 "output_mixer.cc", | 33 "output_mixer.cc", |
| 34 "output_mixer.h", | 34 "output_mixer.h", |
| 35 "shared_data.cc", | 35 "shared_data.cc", |
| 36 "shared_data.h", | 36 "shared_data.h", |
| 37 "statistics.cc", | 37 "statistics.cc", |
| 38 "statistics.h", | 38 "statistics.h", |
| 39 "transmit_mixer.cc", | 39 "transmit_mixer.cc", |
| 40 "transmit_mixer.h", | 40 "transmit_mixer.h", |
| 41 "transport_feedback_packet_loss_tracker.cc", |
| 42 "transport_feedback_packet_loss_tracker.h", |
| 41 "utility.cc", | 43 "utility.cc", |
| 42 "utility.h", | 44 "utility.h", |
| 43 "voe_audio_processing_impl.cc", | 45 "voe_audio_processing_impl.cc", |
| 44 "voe_audio_processing_impl.h", | 46 "voe_audio_processing_impl.h", |
| 45 "voe_base_impl.cc", | 47 "voe_base_impl.cc", |
| 46 "voe_base_impl.h", | 48 "voe_base_impl.h", |
| 47 "voe_codec_impl.cc", | 49 "voe_codec_impl.cc", |
| 48 "voe_codec_impl.h", | 50 "voe_codec_impl.h", |
| 49 "voe_external_media_impl.cc", | 51 "voe_external_media_impl.cc", |
| 50 "voe_external_media_impl.h", | 52 "voe_external_media_impl.h", |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 deps += [ "//testing/android/native_test:native_test_native_code" ] | 209 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 208 shard_timeout = 900 | 210 shard_timeout = 900 |
| 209 } | 211 } |
| 210 | 212 |
| 211 sources = [ | 213 sources = [ |
| 212 "channel_unittest.cc", | 214 "channel_unittest.cc", |
| 213 "test/channel_transport/udp_socket_manager_unittest.cc", | 215 "test/channel_transport/udp_socket_manager_unittest.cc", |
| 214 "test/channel_transport/udp_socket_wrapper_unittest.cc", | 216 "test/channel_transport/udp_socket_wrapper_unittest.cc", |
| 215 "test/channel_transport/udp_transport_unittest.cc", | 217 "test/channel_transport/udp_transport_unittest.cc", |
| 216 "transmit_mixer_unittest.cc", | 218 "transmit_mixer_unittest.cc", |
| 219 "transport_feedback_packet_loss_tracker_unittest.cc", |
| 217 "utility_unittest.cc", | 220 "utility_unittest.cc", |
| 218 "voe_audio_processing_unittest.cc", | 221 "voe_audio_processing_unittest.cc", |
| 219 "voe_base_unittest.cc", | 222 "voe_base_unittest.cc", |
| 220 "voe_codec_unittest.cc", | 223 "voe_codec_unittest.cc", |
| 221 "voe_network_unittest.cc", | 224 "voe_network_unittest.cc", |
| 222 "voice_engine_fixture.cc", | 225 "voice_engine_fixture.cc", |
| 223 "voice_engine_fixture.h", | 226 "voice_engine_fixture.h", |
| 224 ] | 227 ] |
| 225 | 228 |
| 226 if (is_win) { | 229 if (is_win) { |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 ] | 350 ] |
| 348 } | 351 } |
| 349 | 352 |
| 350 if (!build_with_chromium && is_clang) { | 353 if (!build_with_chromium && is_clang) { |
| 351 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 354 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 352 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 355 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 353 } | 356 } |
| 354 } | 357 } |
| 355 } | 358 } |
| 356 } | 359 } |
| OLD | NEW |