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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "bufferqueue.cc", | 100 "bufferqueue.cc", |
101 "bufferqueue.h", | 101 "bufferqueue.h", |
102 "bytebuffer.cc", | 102 "bytebuffer.cc", |
103 "bytebuffer.h", | 103 "bytebuffer.h", |
104 "byteorder.h", | 104 "byteorder.h", |
105 "checks.cc", | 105 "checks.cc", |
106 "checks.h", | 106 "checks.h", |
107 "constructormagic.h", | 107 "constructormagic.h", |
108 "copyonwritebuffer.cc", | 108 "copyonwritebuffer.cc", |
109 "copyonwritebuffer.h", | 109 "copyonwritebuffer.h", |
| 110 "cpu_time.cc", |
| 111 "cpu_time.h", |
110 "criticalsection.cc", | 112 "criticalsection.cc", |
111 "criticalsection.h", | 113 "criticalsection.h", |
112 "deprecation.h", | 114 "deprecation.h", |
113 "event.cc", | 115 "event.cc", |
114 "event.h", | 116 "event.h", |
115 "event_tracer.cc", | 117 "event_tracer.cc", |
116 "event_tracer.h", | 118 "event_tracer.h", |
117 "file.cc", | 119 "file.cc", |
118 "file.h", | 120 "file.h", |
119 "flags.cc", | 121 "flags.cc", |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 | 722 |
721 if (!build_with_chromium && is_clang) { | 723 if (!build_with_chromium && is_clang) { |
722 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 724 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
723 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 725 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
724 } | 726 } |
725 } | 727 } |
726 | 728 |
727 rtc_source_set("rtc_base_nonparallel_tests") { | 729 rtc_source_set("rtc_base_nonparallel_tests") { |
728 testonly = true | 730 testonly = true |
729 sources = [ | 731 sources = [ |
| 732 "cpu_time_unittest.cc", |
730 "nullsocketserver_unittest.cc", | 733 "nullsocketserver_unittest.cc", |
731 "physicalsocketserver_unittest.cc", | 734 "physicalsocketserver_unittest.cc", |
732 "socket_unittest.cc", | 735 "socket_unittest.cc", |
733 "socket_unittest.h", | 736 "socket_unittest.h", |
734 "socketaddress_unittest.cc", | 737 "socketaddress_unittest.cc", |
735 "virtualsocket_unittest.cc", | 738 "virtualsocket_unittest.cc", |
736 ] | 739 ] |
737 deps = [ | 740 deps = [ |
738 ":rtc_base", | 741 ":rtc_base", |
739 ":rtc_base_tests_main", | 742 ":rtc_base_tests_main", |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 | 901 |
899 if (is_android) { | 902 if (is_android) { |
900 android_library("base_java") { | 903 android_library("base_java") { |
901 java_files = [ | 904 java_files = [ |
902 "java/src/org/webrtc/Logging.java", | 905 "java/src/org/webrtc/Logging.java", |
903 "java/src/org/webrtc/Size.java", | 906 "java/src/org/webrtc/Size.java", |
904 "java/src/org/webrtc/ThreadUtils.java", | 907 "java/src/org/webrtc/ThreadUtils.java", |
905 ] | 908 ] |
906 } | 909 } |
907 } | 910 } |
OLD | NEW |