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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 | 10 |
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 "test/stream_generator.cc", | 505 "test/stream_generator.cc", |
506 "test/stream_generator.h", | 506 "test/stream_generator.h", |
507 "timing_unittest.cc", | 507 "timing_unittest.cc", |
508 "utility/default_video_bitrate_allocator_unittest.cc", | 508 "utility/default_video_bitrate_allocator_unittest.cc", |
509 "utility/frame_dropper_unittest.cc", | 509 "utility/frame_dropper_unittest.cc", |
510 "utility/ivf_file_writer_unittest.cc", | 510 "utility/ivf_file_writer_unittest.cc", |
511 "utility/moving_average_unittest.cc", | 511 "utility/moving_average_unittest.cc", |
512 "utility/quality_scaler_unittest.cc", | 512 "utility/quality_scaler_unittest.cc", |
513 "utility/simulcast_rate_allocator_unittest.cc", | 513 "utility/simulcast_rate_allocator_unittest.cc", |
514 "video_codec_initializer_unittest.cc", | 514 "video_codec_initializer_unittest.cc", |
515 "video_coding_robustness_unittest.cc", | |
516 "video_packet_buffer_unittest.cc", | 515 "video_packet_buffer_unittest.cc", |
517 "video_receiver_unittest.cc", | 516 "video_receiver_unittest.cc", |
518 "video_sender_unittest.cc", | 517 "video_sender_unittest.cc", |
519 ] | 518 ] |
520 if (rtc_libvpx_build_vp9) { | 519 if (rtc_libvpx_build_vp9) { |
521 sources += [ "codecs/vp9/vp9_screenshare_layers_unittest.cc" ] | 520 sources += [ "codecs/vp9/vp9_screenshare_layers_unittest.cc" ] |
522 } | 521 } |
523 if (rtc_use_h264) { | 522 if (rtc_use_h264) { |
524 sources += [ "codecs/h264/h264_encoder_impl_unittest.cc" ] | 523 sources += [ "codecs/h264/h264_encoder_impl_unittest.cc" ] |
525 } | 524 } |
(...skipping 30 matching lines...) Expand all Loading... |
556 } | 555 } |
557 | 556 |
558 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 557 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
559 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 558 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
560 if (!build_with_chromium && is_clang) { | 559 if (!build_with_chromium && is_clang) { |
561 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 560 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
562 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 561 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
563 } | 562 } |
564 } | 563 } |
565 } | 564 } |
OLD | NEW |