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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
679 } | 679 } |
680 } | 680 } |
681 | 681 |
682 rtc_source_set("rtc_base_tests_utils") { | 682 rtc_source_set("rtc_base_tests_utils") { |
683 testonly = true | 683 testonly = true |
684 sources = [ | 684 sources = [ |
685 # Also use this as a convenient dumping ground for misc files that are | 685 # Also use this as a convenient dumping ground for misc files that are |
686 # included by multiple targets below. | 686 # included by multiple targets below. |
687 "cpu_time.cc", | |
688 "cpu_time.h", | |
687 "fakeclock.cc", | 689 "fakeclock.cc", |
688 "fakeclock.h", | 690 "fakeclock.h", |
689 "fakenetwork.h", | 691 "fakenetwork.h", |
690 "fakesslidentity.h", | 692 "fakesslidentity.h", |
691 "firewallsocketserver.cc", | 693 "firewallsocketserver.cc", |
692 "firewallsocketserver.h", | 694 "firewallsocketserver.h", |
693 "gunit.h", | 695 "gunit.h", |
694 "httpserver.cc", | 696 "httpserver.cc", |
695 "httpserver.h", | 697 "httpserver.h", |
696 "natserver.cc", | 698 "natserver.cc", |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
758 "atomicops_unittest.cc", | 760 "atomicops_unittest.cc", |
759 "base64_unittest.cc", | 761 "base64_unittest.cc", |
760 "basictypes_unittest.cc", | 762 "basictypes_unittest.cc", |
761 "bind_unittest.cc", | 763 "bind_unittest.cc", |
762 "bitbuffer_unittest.cc", | 764 "bitbuffer_unittest.cc", |
763 "buffer_unittest.cc", | 765 "buffer_unittest.cc", |
764 "bufferqueue_unittest.cc", | 766 "bufferqueue_unittest.cc", |
765 "bytebuffer_unittest.cc", | 767 "bytebuffer_unittest.cc", |
766 "byteorder_unittest.cc", | 768 "byteorder_unittest.cc", |
767 "copyonwritebuffer_unittest.cc", | 769 "copyonwritebuffer_unittest.cc", |
770 "cpu_time_unittest.cc", | |
Taylor Brandstetter
2017/02/17 23:35:47
Sorry I didn't notice earlier, but this should go
| |
768 "criticalsection_unittest.cc", | 771 "criticalsection_unittest.cc", |
769 "event_tracer_unittest.cc", | 772 "event_tracer_unittest.cc", |
770 "event_unittest.cc", | 773 "event_unittest.cc", |
771 "file_unittest.cc", | 774 "file_unittest.cc", |
772 "function_view_unittest.cc", | 775 "function_view_unittest.cc", |
773 "logging_unittest.cc", | 776 "logging_unittest.cc", |
774 "md5digest_unittest.cc", | 777 "md5digest_unittest.cc", |
775 "mod_ops_unittest.cc", | 778 "mod_ops_unittest.cc", |
776 "onetimeevent_unittest.cc", | 779 "onetimeevent_unittest.cc", |
777 "optional_unittest.cc", | 780 "optional_unittest.cc", |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
900 | 903 |
901 if (is_android) { | 904 if (is_android) { |
902 android_library("base_java") { | 905 android_library("base_java") { |
903 java_files = [ | 906 java_files = [ |
904 "java/src/org/webrtc/Logging.java", | 907 "java/src/org/webrtc/Logging.java", |
905 "java/src/org/webrtc/Size.java", | 908 "java/src/org/webrtc/Size.java", |
906 "java/src/org/webrtc/ThreadUtils.java", | 909 "java/src/org/webrtc/ThreadUtils.java", |
907 ] | 910 ] |
908 } | 911 } |
909 } | 912 } |
OLD | NEW |