Chromium Code Reviews| 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 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 290 "encoder_settings.h", | 290 "encoder_settings.h", |
| 291 "fake_audio_device.cc", | 291 "fake_audio_device.cc", |
| 292 "fake_audio_device.h", | 292 "fake_audio_device.h", |
| 293 "fake_decoder.cc", | 293 "fake_decoder.cc", |
| 294 "fake_decoder.h", | 294 "fake_decoder.h", |
| 295 "fake_encoder.cc", | 295 "fake_encoder.cc", |
| 296 "fake_encoder.h", | 296 "fake_encoder.h", |
| 297 "fake_network_pipe.cc", | 297 "fake_network_pipe.cc", |
| 298 "fake_network_pipe.h", | 298 "fake_network_pipe.h", |
| 299 "fake_videorenderer.h", | 299 "fake_videorenderer.h", |
| 300 "firewallsocketserver.cc", | |
| 301 "firewallsocketserver.h", | |
| 300 "frame_generator_capturer.cc", | 302 "frame_generator_capturer.cc", |
| 301 "frame_generator_capturer.h", | 303 "frame_generator_capturer.h", |
| 302 "layer_filtering_transport.cc", | 304 "layer_filtering_transport.cc", |
| 303 "layer_filtering_transport.h", | 305 "layer_filtering_transport.h", |
| 304 "mock_transport.h", | 306 "mock_transport.h", |
| 305 "mock_voe_channel_proxy.h", | 307 "mock_voe_channel_proxy.h", |
| 306 "mock_voice_engine.h", | 308 "mock_voice_engine.h", |
| 307 "null_transport.cc", | 309 "null_transport.cc", |
| 308 "null_transport.h", | 310 "null_transport.h", |
| 309 "rtp_rtcp_observer.h", | 311 "rtp_rtcp_observer.h", |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 324 if (!build_with_chromium && is_clang) { | 326 if (!build_with_chromium && is_clang) { |
| 325 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 327 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 328 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 327 } | 329 } |
| 328 | 330 |
| 329 deps = [ | 331 deps = [ |
| 330 ":rtp_test_utils", | 332 ":rtp_test_utils", |
| 331 ":test_support", | 333 ":test_support", |
| 332 "..:webrtc_common", | 334 "..:webrtc_common", |
| 333 "../audio", | 335 "../audio", |
| 334 "../base:rtc_base_approved", | 336 "../base:rtc_base", |
|
nisse-webrtc
2016/11/18 11:17:45
This violates dependency rules. But imo, test code
| |
| 335 "../call", | 337 "../call", |
| 336 "../modules/audio_device:mock_audio_device", | 338 "../modules/audio_device:mock_audio_device", |
| 337 "../modules/audio_mixer:audio_mixer_impl", | 339 "../modules/audio_mixer:audio_mixer_impl", |
| 338 "../modules/audio_processing", | 340 "../modules/audio_processing", |
| 339 "../modules/media_file", | 341 "../modules/media_file", |
| 340 "../modules/video_capture:video_capture_module", | 342 "../modules/video_capture:video_capture_module", |
| 341 "../video", | 343 "../video", |
| 342 "//testing/gmock", | 344 "//testing/gmock", |
| 343 "//testing/gtest", | 345 "//testing/gtest", |
| 344 ] | 346 ] |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 409 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 411 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 410 } | 412 } |
| 411 | 413 |
| 412 deps = [ | 414 deps = [ |
| 413 ":test_support", | 415 ":test_support", |
| 414 ":video_test_common", | 416 ":video_test_common", |
| 415 "../modules/media_file", | 417 "../modules/media_file", |
| 416 "//testing/gtest", | 418 "//testing/gtest", |
| 417 ] | 419 ] |
| 418 } | 420 } |
| OLD | NEW |