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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "safe_compare.h", | 164 "safe_compare.h", |
165 "safe_conversions.h", | 165 "safe_conversions.h", |
166 "safe_conversions_impl.h", | 166 "safe_conversions_impl.h", |
167 "sanitizer.h", | 167 "sanitizer.h", |
168 "scoped_ref_ptr.h", | 168 "scoped_ref_ptr.h", |
169 "stringencode.cc", | 169 "stringencode.cc", |
170 "stringencode.h", | 170 "stringencode.h", |
171 "stringutils.cc", | 171 "stringutils.cc", |
172 "stringutils.h", | 172 "stringutils.h", |
173 "swap_queue.h", | 173 "swap_queue.h", |
174 "systeminfo.cc", | |
175 "systeminfo.h", | |
176 "template_util.h", | 174 "template_util.h", |
177 "thread_annotations.h", | 175 "thread_annotations.h", |
178 "thread_checker.h", | 176 "thread_checker.h", |
179 "thread_checker_impl.cc", | 177 "thread_checker_impl.cc", |
180 "thread_checker_impl.h", | 178 "thread_checker_impl.h", |
181 "timestampaligner.cc", | 179 "timestampaligner.cc", |
182 "timestampaligner.h", | 180 "timestampaligner.h", |
183 "timeutils.cc", | 181 "timeutils.cc", |
184 "timeutils.h", | 182 "timeutils.h", |
185 "trace_event.h", | 183 "trace_event.h", |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 "platform_thread_unittest.cc", | 804 "platform_thread_unittest.cc", |
807 "random_unittest.cc", | 805 "random_unittest.cc", |
808 "rate_limiter_unittest.cc", | 806 "rate_limiter_unittest.cc", |
809 "rate_statistics_unittest.cc", | 807 "rate_statistics_unittest.cc", |
810 "ratetracker_unittest.cc", | 808 "ratetracker_unittest.cc", |
811 "refcountedobject_unittest.cc", | 809 "refcountedobject_unittest.cc", |
812 "safe_compare_unittest.cc", | 810 "safe_compare_unittest.cc", |
813 "stringencode_unittest.cc", | 811 "stringencode_unittest.cc", |
814 "stringutils_unittest.cc", | 812 "stringutils_unittest.cc", |
815 "swap_queue_unittest.cc", | 813 "swap_queue_unittest.cc", |
816 | |
817 # TODO(ronghuawu): Reenable this test. | |
818 # "systeminfo_unittest.cc", | |
819 "thread_annotations_unittest.cc", | 814 "thread_annotations_unittest.cc", |
820 "thread_checker_unittest.cc", | 815 "thread_checker_unittest.cc", |
821 "timestampaligner_unittest.cc", | 816 "timestampaligner_unittest.cc", |
822 "timeutils_unittest.cc", | 817 "timeutils_unittest.cc", |
823 ] | 818 ] |
824 deps = [ | 819 deps = [ |
825 ":rtc_base_approved", | 820 ":rtc_base_approved", |
826 ":rtc_base_tests_utils", | 821 ":rtc_base_tests_utils", |
827 ] | 822 ] |
828 if (!build_with_chromium && is_clang) { | 823 if (!build_with_chromium && is_clang) { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 "java/src/org/webrtc/Logging.java", | 931 "java/src/org/webrtc/Logging.java", |
937 "java/src/org/webrtc/Size.java", | 932 "java/src/org/webrtc/Size.java", |
938 "java/src/org/webrtc/ThreadUtils.java", | 933 "java/src/org/webrtc/ThreadUtils.java", |
939 ] | 934 ] |
940 | 935 |
941 deps = [ | 936 deps = [ |
942 "//base:base_java", | 937 "//base:base_java", |
943 ] | 938 ] |
944 } | 939 } |
945 } | 940 } |
OLD | NEW |