| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 ] | 624 ] |
| 625 } | 625 } |
| 626 | 626 |
| 627 if (rtc_build_libvpx) { | 627 if (rtc_build_libvpx) { |
| 628 deps += [ rtc_libvpx_dir ] | 628 deps += [ rtc_libvpx_dir ] |
| 629 } | 629 } |
| 630 | 630 |
| 631 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 631 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 632 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 632 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 633 | 633 |
| 634 if (!build_with_chromium && is_clang) { | 634 if ((!build_with_chromium || is_win) && is_clang) { |
| 635 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 635 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 636 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 636 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 637 } | 637 } |
| 638 | 638 |
| 639 if (is_win) { | 639 if (is_win) { |
| 640 cflags = [ | 640 cflags = [ |
| 641 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 641 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 642 "/wd4373", # virtual function override. | 642 "/wd4373", # virtual function override. |
| 643 ] | 643 ] |
| 644 } | 644 } |
| 645 | 645 |
| 646 deps += [ | 646 deps += [ |
| 647 ":audio_network_adaptor_unittests", | 647 ":audio_network_adaptor_unittests", |
| 648 "..:webrtc_common", | 648 "..:webrtc_common", |
| 649 "../api:transport_api", | 649 "../api:transport_api", |
| 650 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 650 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 651 "../base:rtc_base_tests_utils", |
| 651 "../common_audio", | 652 "../common_audio", |
| 652 "../common_video", | 653 "../common_video", |
| 653 "../system_wrappers", | 654 "../system_wrappers", |
| 655 "../system_wrappers:metrics_default", |
| 654 "../test:rtp_test_utils", | 656 "../test:rtp_test_utils", |
| 655 "../test:test_common", | 657 "../test:test_common", |
| 656 "../test:test_main", | 658 "../test:test_main", |
| 657 "../test:video_test_common", | 659 "../test:video_test_common", |
| 658 "audio_coding", | 660 "audio_coding", |
| 659 "audio_coding:acm_receive_test", | 661 "audio_coding:acm_receive_test", |
| 660 "audio_coding:acm_send_test", | 662 "audio_coding:acm_send_test", |
| 661 "audio_coding:builtin_audio_decoder_factory", | 663 "audio_coding:builtin_audio_decoder_factory", |
| 662 "audio_coding:cng", | 664 "audio_coding:cng", |
| 663 "audio_coding:isac_fix", | 665 "audio_coding:isac_fix", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 "../test:test_common", | 757 "../test:test_common", |
| 756 "../test:test_main", | 758 "../test:test_main", |
| 757 "remote_bitrate_estimator:bwe_simulator_lib", | 759 "remote_bitrate_estimator:bwe_simulator_lib", |
| 758 "video_capture", | 760 "video_capture", |
| 759 "//testing/gmock", | 761 "//testing/gmock", |
| 760 "//testing/gtest", | 762 "//testing/gtest", |
| 761 "//third_party/gflags", | 763 "//third_party/gflags", |
| 762 ] | 764 ] |
| 763 } | 765 } |
| 764 } | 766 } |
| OLD | NEW |