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 638 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", |
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 |