| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 if (rtc_use_h264) { | 56 if (rtc_use_h264) { |
| 57 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] | 57 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 defines = audio_coding_defines + videoprocessor_defines | 60 defines = audio_coding_defines + videoprocessor_defines |
| 61 | 61 |
| 62 deps = [ | 62 deps = [ |
| 63 "..:webrtc_common", | 63 "..:webrtc_common", |
| 64 "../common_video", | 64 "../common_video", |
| 65 "../modules/audio_coding", | 65 "../modules/audio_coding", |
| 66 "../modules/audio_coding:audio_format_conversion", |
| 66 "../modules/rtp_rtcp", | 67 "../modules/rtp_rtcp", |
| 67 "../modules/utility", | 68 "../modules/utility", |
| 68 "../modules/video_coding", | 69 "../modules/video_coding", |
| 69 "../modules/video_coding:video_codecs_test_framework", | 70 "../modules/video_coding:video_codecs_test_framework", |
| 70 "../system_wrappers", | 71 "../system_wrappers", |
| 71 "../test:test_support", | 72 "../test:test_support", |
| 72 "../test:test_support_main", | 73 "../test:test_support_main", |
| 73 "//testing/gtest", | 74 "//testing/gtest", |
| 74 ] | 75 ] |
| 75 | 76 |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 "../test:test_common", | 737 "../test:test_common", |
| 737 "../test:test_support_main", | 738 "../test:test_support_main", |
| 738 "remote_bitrate_estimator:bwe_simulator_lib", | 739 "remote_bitrate_estimator:bwe_simulator_lib", |
| 739 "video_capture", | 740 "video_capture", |
| 740 "//testing/gmock", | 741 "//testing/gmock", |
| 741 "//testing/gtest", | 742 "//testing/gtest", |
| 742 "//third_party/gflags", | 743 "//third_party/gflags", |
| 743 ] | 744 ] |
| 744 } | 745 } |
| 745 } | 746 } |
| OLD | NEW |