| 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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 if (is_win) { | 630 if (is_win) { |
| 631 cflags = [ | 631 cflags = [ |
| 632 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 632 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 633 "/wd4373", # virtual function override. | 633 "/wd4373", # virtual function override. |
| 634 ] | 634 ] |
| 635 } | 635 } |
| 636 | 636 |
| 637 deps += [ | 637 deps += [ |
| 638 ":audio_network_adaptor_unittests", | 638 ":audio_network_adaptor_unittests", |
| 639 "..:webrtc_common", | 639 "..:webrtc_common", |
| 640 "../api:transport_api", |
| 640 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 641 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 641 "../common_audio", | 642 "../common_audio", |
| 642 "../common_video", | 643 "../common_video", |
| 643 "../system_wrappers", | 644 "../system_wrappers", |
| 644 "../test:rtp_test_utils", | 645 "../test:rtp_test_utils", |
| 645 "../test:test_common", | 646 "../test:test_common", |
| 646 "../test:test_support", | 647 "../test:test_support", |
| 647 "../test:test_support_main", | 648 "../test:test_support_main", |
| 648 "../test:video_test_common", | 649 "../test:video_test_common", |
| 649 "audio_coding", | 650 "audio_coding", |
| (...skipping 96 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 |