OLD | NEW |
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 videoprocessor_defines = [] | 59 videoprocessor_defines = [] |
60 if (rtc_use_h264) { | 60 if (rtc_use_h264) { |
61 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] | 61 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] |
62 } | 62 } |
63 | 63 |
64 defines = audio_coding_defines + videoprocessor_defines | 64 defines = audio_coding_defines + videoprocessor_defines |
65 | 65 |
66 deps = [ | 66 deps = [ |
67 "..:webrtc_common", | 67 "..:webrtc_common", |
68 "../common_video", | 68 "../common_video", |
| 69 "../media:rtc_media_base", |
69 "../modules/audio_coding", | 70 "../modules/audio_coding", |
70 "../modules/audio_coding:audio_format_conversion", | 71 "../modules/audio_coding:audio_format_conversion", |
71 "../modules/rtp_rtcp", | 72 "../modules/rtp_rtcp", |
72 "../modules/utility", | 73 "../modules/utility", |
73 "../modules/video_coding", | 74 "../modules/video_coding", |
74 "../modules/video_coding:video_codecs_test_framework", | 75 "../modules/video_coding:video_codecs_test_framework", |
75 "../system_wrappers", | 76 "../system_wrappers", |
76 "../test:test_support", | 77 "../test:test_support", |
77 "../test:test_support_main", | 78 "../test:test_support_main", |
78 "//testing/gmock", | 79 "//testing/gmock", |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 "../test:test_common", | 747 "../test:test_common", |
747 "../test:test_support_main", | 748 "../test:test_support_main", |
748 "remote_bitrate_estimator:bwe_simulator_lib", | 749 "remote_bitrate_estimator:bwe_simulator_lib", |
749 "video_capture", | 750 "video_capture", |
750 "//testing/gmock", | 751 "//testing/gmock", |
751 "//testing/gtest", | 752 "//testing/gtest", |
752 "//third_party/gflags", | 753 "//third_party/gflags", |
753 ] | 754 ] |
754 } | 755 } |
755 } | 756 } |
OLD | NEW |