| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 | 722 |
| 723 if (!build_with_chromium && is_clang) { | 723 if (!build_with_chromium && is_clang) { |
| 724 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 724 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 725 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 725 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 726 } | 726 } |
| 727 } | 727 } |
| 728 | 728 |
| 729 rtc_source_set("rtc_base_nonparallel_tests") { | 729 rtc_source_set("rtc_base_nonparallel_tests") { |
| 730 testonly = true | 730 testonly = true |
| 731 sources = [ | 731 sources = [ |
| 732 "filerotatingstream_unittest.cc", |
| 732 "nullsocketserver_unittest.cc", | 733 "nullsocketserver_unittest.cc", |
| 733 "physicalsocketserver_unittest.cc", | 734 "physicalsocketserver_unittest.cc", |
| 734 "socket_unittest.cc", | 735 "socket_unittest.cc", |
| 735 "socket_unittest.h", | 736 "socket_unittest.h", |
| 736 "socketaddress_unittest.cc", | 737 "socketaddress_unittest.cc", |
| 737 "virtualsocket_unittest.cc", | 738 "virtualsocket_unittest.cc", |
| 738 ] | 739 ] |
| 739 deps = [ | 740 deps = [ |
| 740 ":rtc_base", | 741 ":rtc_base", |
| 741 ":rtc_base_tests_main", | 742 ":rtc_base_tests_main", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 config("rtc_base_unittests_config") { | 835 config("rtc_base_unittests_config") { |
| 835 if (is_clang) { | 836 if (is_clang) { |
| 836 cflags = [ "-Wno-unused-const-variable" ] | 837 cflags = [ "-Wno-unused-const-variable" ] |
| 837 } | 838 } |
| 838 } | 839 } |
| 839 rtc_source_set("rtc_base_unittests") { | 840 rtc_source_set("rtc_base_unittests") { |
| 840 testonly = true | 841 testonly = true |
| 841 sources = [ | 842 sources = [ |
| 842 "callback_unittest.cc", | 843 "callback_unittest.cc", |
| 843 "crc32_unittest.cc", | 844 "crc32_unittest.cc", |
| 844 "filerotatingstream_unittest.cc", | |
| 845 "fileutils_unittest.cc", | 845 "fileutils_unittest.cc", |
| 846 "helpers_unittest.cc", | 846 "helpers_unittest.cc", |
| 847 "httpbase_unittest.cc", | 847 "httpbase_unittest.cc", |
| 848 "httpcommon_unittest.cc", | 848 "httpcommon_unittest.cc", |
| 849 "httpserver_unittest.cc", | 849 "httpserver_unittest.cc", |
| 850 "ipaddress_unittest.cc", | 850 "ipaddress_unittest.cc", |
| 851 "messagedigest_unittest.cc", | 851 "messagedigest_unittest.cc", |
| 852 "messagequeue_unittest.cc", | 852 "messagequeue_unittest.cc", |
| 853 "nat_unittest.cc", | 853 "nat_unittest.cc", |
| 854 "network_unittest.cc", | 854 "network_unittest.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 | 901 |
| 902 if (is_android) { | 902 if (is_android) { |
| 903 android_library("base_java") { | 903 android_library("base_java") { |
| 904 java_files = [ | 904 java_files = [ |
| 905 "java/src/org/webrtc/Logging.java", | 905 "java/src/org/webrtc/Logging.java", |
| 906 "java/src/org/webrtc/Size.java", | 906 "java/src/org/webrtc/Size.java", |
| 907 "java/src/org/webrtc/ThreadUtils.java", | 907 "java/src/org/webrtc/ThreadUtils.java", |
| 908 ] | 908 ] |
| 909 } | 909 } |
| 910 } | 910 } |
| OLD | NEW |