| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 if (is_win) { | 615 if (is_win) { |
| 616 cflags = [ | 616 cflags = [ |
| 617 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 617 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 618 "/wd4373", # virtual function override. | 618 "/wd4373", # virtual function override. |
| 619 ] | 619 ] |
| 620 } | 620 } |
| 621 | 621 |
| 622 deps += [ | 622 deps += [ |
| 623 ":audio_network_adaptor_unittests", | 623 ":audio_network_adaptor_unittests", |
| 624 "..:webrtc_common", | 624 "..:webrtc_common", |
| 625 "../api:transport_api", |
| 625 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 626 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 626 "../common_audio", | 627 "../common_audio", |
| 627 "../common_video", | 628 "../common_video", |
| 628 "../system_wrappers:system_wrappers", | 629 "../system_wrappers:system_wrappers", |
| 629 "../test:rtp_test_utils", | 630 "../test:rtp_test_utils", |
| 630 "../test:test_common", | 631 "../test:test_common", |
| 631 "../test:test_support_main", | 632 "../test:test_support_main", |
| 632 "../test:video_test_common", | 633 "../test:video_test_common", |
| 633 "audio_coding", | 634 "audio_coding", |
| 634 "audio_coding:acm_receive_test", | 635 "audio_coding:acm_receive_test", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 "../test:test_common", | 734 "../test:test_common", |
| 734 "../test:test_support_main", | 735 "../test:test_support_main", |
| 735 "remote_bitrate_estimator:bwe_simulator_lib", | 736 "remote_bitrate_estimator:bwe_simulator_lib", |
| 736 "video_capture", | 737 "video_capture", |
| 737 "//testing/gmock", | 738 "//testing/gmock", |
| 738 "//testing/gtest", | 739 "//testing/gtest", |
| 739 "//third_party/gflags", | 740 "//third_party/gflags", |
| 740 ] | 741 ] |
| 741 } | 742 } |
| 742 } | 743 } |
| OLD | NEW |