| 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 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 testonly = true | 828 testonly = true |
| 829 | 829 |
| 830 # Skip restricting visibility on mobile platforms since the tests on those | 830 # Skip restricting visibility on mobile platforms since the tests on those |
| 831 # gets additional generated targets which would require many lines here to | 831 # gets additional generated targets which would require many lines here to |
| 832 # cover (which would be confusing to read and hard to maintain). | 832 # cover (which would be confusing to read and hard to maintain). |
| 833 if (!is_android && !is_ios) { | 833 if (!is_android && !is_ios) { |
| 834 # TODO(kjellander): Reenable after finishing https://bugs.webrtc.org/7634. | 834 # TODO(kjellander): Reenable after finishing https://bugs.webrtc.org/7634. |
| 835 #visibility = [ "..:rtc_unittests" ] | 835 #visibility = [ "..:rtc_unittests" ] |
| 836 } | 836 } |
| 837 sources = [ | 837 sources = [ |
| 838 "array_view_unittest.cc", | |
| 839 "atomicops_unittest.cc", | 838 "atomicops_unittest.cc", |
| 840 "base64_unittest.cc", | 839 "base64_unittest.cc", |
| 841 "basictypes_unittest.cc", | 840 "basictypes_unittest.cc", |
| 842 "bind_unittest.cc", | 841 "bind_unittest.cc", |
| 843 "bitbuffer_unittest.cc", | 842 "bitbuffer_unittest.cc", |
| 844 "buffer_unittest.cc", | 843 "buffer_unittest.cc", |
| 845 "bufferqueue_unittest.cc", | 844 "bufferqueue_unittest.cc", |
| 846 "bytebuffer_unittest.cc", | 845 "bytebuffer_unittest.cc", |
| 847 "byteorder_unittest.cc", | 846 "byteorder_unittest.cc", |
| 848 "copyonwritebuffer_unittest.cc", | 847 "copyonwritebuffer_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 876 "timestampaligner_unittest.cc", | 875 "timestampaligner_unittest.cc", |
| 877 "timeutils_unittest.cc", | 876 "timeutils_unittest.cc", |
| 878 "virtualsocket_unittest.cc", | 877 "virtualsocket_unittest.cc", |
| 879 ] | 878 ] |
| 880 deps = [ | 879 deps = [ |
| 881 ":rtc_base", | 880 ":rtc_base", |
| 882 ":rtc_base_approved", | 881 ":rtc_base_approved", |
| 883 ":rtc_base_tests_main", | 882 ":rtc_base_tests_main", |
| 884 ":rtc_base_tests_utils", | 883 ":rtc_base_tests_utils", |
| 885 ":rtc_task_queue", | 884 ":rtc_task_queue", |
| 885 "../api:array_view", |
| 886 "../system_wrappers:system_wrappers", | 886 "../system_wrappers:system_wrappers", |
| 887 "../test:test_support", | 887 "../test:test_support", |
| 888 ] | 888 ] |
| 889 if (!build_with_chromium && is_clang) { | 889 if (!build_with_chromium && is_clang) { |
| 890 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 890 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 891 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 891 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 892 } | 892 } |
| 893 } | 893 } |
| 894 | 894 |
| 895 rtc_source_set("rtc_task_queue_unittests") { | 895 rtc_source_set("rtc_task_queue_unittests") { |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 "java/src/org/webrtc/ContextUtils.java", | 1074 "java/src/org/webrtc/ContextUtils.java", |
| 1075 "java/src/org/webrtc/Logging.java", | 1075 "java/src/org/webrtc/Logging.java", |
| 1076 "java/src/org/webrtc/Size.java", | 1076 "java/src/org/webrtc/Size.java", |
| 1077 "java/src/org/webrtc/ThreadUtils.java", | 1077 "java/src/org/webrtc/ThreadUtils.java", |
| 1078 ] | 1078 ] |
| 1079 | 1079 |
| 1080 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 1080 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 1081 no_build_hooks = true | 1081 no_build_hooks = true |
| 1082 } | 1082 } |
| 1083 } | 1083 } |
| OLD | NEW |