Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(803)

Side by Side Diff: webrtc/modules/BUILD.gn

Issue 2424173003: Move functionality out from AudioFrame and into AudioFrameOperations. (Closed)
Patch Set: Updated deprecation notice, minimized diff to original unittest. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 "rtp_rtcp/source/time_util_unittest.cc", 476 "rtp_rtcp/source/time_util_unittest.cc",
477 "rtp_rtcp/source/ulpfec_generator_unittest.cc", 477 "rtp_rtcp/source/ulpfec_generator_unittest.cc",
478 "rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc", 478 "rtp_rtcp/source/ulpfec_header_reader_writer_unittest.cc",
479 "rtp_rtcp/source/ulpfec_receiver_unittest.cc", 479 "rtp_rtcp/source/ulpfec_receiver_unittest.cc",
480 "rtp_rtcp/source/vp8_partition_aggregator_unittest.cc", 480 "rtp_rtcp/source/vp8_partition_aggregator_unittest.cc",
481 "rtp_rtcp/test/testAPI/test_api.cc", 481 "rtp_rtcp/test/testAPI/test_api.cc",
482 "rtp_rtcp/test/testAPI/test_api.h", 482 "rtp_rtcp/test/testAPI/test_api.h",
483 "rtp_rtcp/test/testAPI/test_api_audio.cc", 483 "rtp_rtcp/test/testAPI/test_api_audio.cc",
484 "rtp_rtcp/test/testAPI/test_api_rtcp.cc", 484 "rtp_rtcp/test/testAPI/test_api_rtcp.cc",
485 "rtp_rtcp/test/testAPI/test_api_video.cc", 485 "rtp_rtcp/test/testAPI/test_api_video.cc",
486 "utility/source/audio_frame_operations_unittest.cc",
487 "utility/source/file_player_unittests.cc", 486 "utility/source/file_player_unittests.cc",
488 "utility/source/process_thread_impl_unittest.cc", 487 "utility/source/process_thread_impl_unittest.cc",
489 "video_coding/codecs/test/packet_manipulator_unittest.cc", 488 "video_coding/codecs/test/packet_manipulator_unittest.cc",
490 "video_coding/codecs/test/stats_unittest.cc", 489 "video_coding/codecs/test/stats_unittest.cc",
491 "video_coding/codecs/test/videoprocessor_unittest.cc", 490 "video_coding/codecs/test/videoprocessor_unittest.cc",
492 "video_coding/codecs/vp8/default_temporal_layers_unittest.cc", 491 "video_coding/codecs/vp8/default_temporal_layers_unittest.cc",
493 "video_coding/codecs/vp8/reference_picture_selection_unittest.cc", 492 "video_coding/codecs/vp8/reference_picture_selection_unittest.cc",
494 "video_coding/codecs/vp8/screenshare_layers_unittest.cc", 493 "video_coding/codecs/vp8/screenshare_layers_unittest.cc",
495 "video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc", 494 "video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc",
496 "video_coding/codecs/vp8/simulcast_unittest.cc", 495 "video_coding/codecs/vp8/simulcast_unittest.cc",
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 cflags = [ 635 cflags = [
637 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 636 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
638 "/wd4373", # virtual function override. 637 "/wd4373", # virtual function override.
639 ] 638 ]
640 } 639 }
641 640
642 deps += [ 641 deps += [
643 ":audio_network_adaptor_unittests", 642 ":audio_network_adaptor_unittests",
644 "..:webrtc_common", 643 "..:webrtc_common",
645 "../api:transport_api", 644 "../api:transport_api",
645 "../audio/utility:audio_frame_operations",
646 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. 646 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806.
647 "../common_audio", 647 "../common_audio",
648 "../common_video", 648 "../common_video",
649 "../system_wrappers", 649 "../system_wrappers",
650 "../test:rtp_test_utils", 650 "../test:rtp_test_utils",
651 "../test:test_common", 651 "../test:test_common",
652 "../test:test_support", 652 "../test:test_support",
653 "../test:test_support_main", 653 "../test:test_support_main",
654 "../test:video_test_common", 654 "../test:video_test_common",
655 "audio_coding", 655 "audio_coding",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 "../test:test_common", 752 "../test:test_common",
753 "../test:test_support_main", 753 "../test:test_support_main",
754 "remote_bitrate_estimator:bwe_simulator_lib", 754 "remote_bitrate_estimator:bwe_simulator_lib",
755 "video_capture", 755 "video_capture",
756 "//testing/gmock", 756 "//testing/gmock",
757 "//testing/gtest", 757 "//testing/gtest",
758 "//third_party/gflags", 758 "//third_party/gflags",
759 ] 759 ]
760 } 760 }
761 } 761 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698