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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 "ratelimiter.cc", | 466 "ratelimiter.cc", |
467 "ratelimiter.h", | 467 "ratelimiter.h", |
468 "rtccertificate.cc", | 468 "rtccertificate.cc", |
469 "rtccertificate.h", | 469 "rtccertificate.h", |
470 "rtccertificategenerator.cc", | 470 "rtccertificategenerator.cc", |
471 "rtccertificategenerator.h", | 471 "rtccertificategenerator.h", |
472 "sha1.cc", | 472 "sha1.cc", |
473 "sha1.h", | 473 "sha1.h", |
474 "sha1digest.cc", | 474 "sha1digest.cc", |
475 "sha1digest.h", | 475 "sha1digest.h", |
476 "sharedexclusivelock.cc", | |
477 "sharedexclusivelock.h", | |
478 "signalthread.cc", | 476 "signalthread.cc", |
479 "signalthread.h", | 477 "signalthread.h", |
480 "sigslot.cc", | 478 "sigslot.cc", |
481 "sigslot.h", | 479 "sigslot.h", |
482 "sigslotrepeater.h", | 480 "sigslotrepeater.h", |
483 "socket.h", | 481 "socket.h", |
484 "socketadapters.cc", | 482 "socketadapters.cc", |
485 "socketadapters.h", | 483 "socketadapters.h", |
486 "socketaddress.cc", | 484 "socketaddress.cc", |
487 "socketaddress.h", | 485 "socketaddress.h", |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 "nat_unittest.cc", | 926 "nat_unittest.cc", |
929 "network_unittest.cc", | 927 "network_unittest.cc", |
930 "optionsfile_unittest.cc", | 928 "optionsfile_unittest.cc", |
931 "proxy_unittest.cc", | 929 "proxy_unittest.cc", |
932 "ptr_util_unittest.cc", | 930 "ptr_util_unittest.cc", |
933 "ratelimiter_unittest.cc", | 931 "ratelimiter_unittest.cc", |
934 "rollingaccumulator_unittest.cc", | 932 "rollingaccumulator_unittest.cc", |
935 "rtccertificate_unittest.cc", | 933 "rtccertificate_unittest.cc", |
936 "rtccertificategenerator_unittest.cc", | 934 "rtccertificategenerator_unittest.cc", |
937 "sha1digest_unittest.cc", | 935 "sha1digest_unittest.cc", |
938 "sharedexclusivelock_unittest.cc", | |
939 "signalthread_unittest.cc", | 936 "signalthread_unittest.cc", |
940 "sigslot_unittest.cc", | 937 "sigslot_unittest.cc", |
941 "sigslottester_unittest.cc", | 938 "sigslottester_unittest.cc", |
942 "stream_unittest.cc", | 939 "stream_unittest.cc", |
943 "testclient_unittest.cc", | 940 "testclient_unittest.cc", |
944 "thread_unittest.cc", | 941 "thread_unittest.cc", |
945 ] | 942 ] |
946 if (is_win) { | 943 if (is_win) { |
947 sources += [ | 944 sources += [ |
948 "win32_unittest.cc", | 945 "win32_unittest.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
977 | 974 |
978 if (is_android) { | 975 if (is_android) { |
979 android_library("base_java") { | 976 android_library("base_java") { |
980 java_files = [ | 977 java_files = [ |
981 "java/src/org/webrtc/Logging.java", | 978 "java/src/org/webrtc/Logging.java", |
982 "java/src/org/webrtc/Size.java", | 979 "java/src/org/webrtc/Size.java", |
983 "java/src/org/webrtc/ThreadUtils.java", | 980 "java/src/org/webrtc/ThreadUtils.java", |
984 ] | 981 ] |
985 } | 982 } |
986 } | 983 } |
OLD | NEW |