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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 sources += [ | 501 sources += [ |
502 "callback.h", | 502 "callback.h", |
503 "json.cc", | 503 "json.cc", |
504 "json.h", | 504 "json.h", |
505 "logsinks.cc", | 505 "logsinks.cc", |
506 "logsinks.h", | 506 "logsinks.h", |
507 "mathutils.h", | 507 "mathutils.h", |
508 "optionsfile.cc", | 508 "optionsfile.cc", |
509 "optionsfile.h", | 509 "optionsfile.h", |
510 "rollingaccumulator.h", | 510 "rollingaccumulator.h", |
| 511 "scopedptrcollection.h", |
511 "sslroots.h", | 512 "sslroots.h", |
512 "testbase64.h", | 513 "testbase64.h", |
513 "testclient.cc", | 514 "testclient.cc", |
514 "testclient.h", | 515 "testclient.h", |
515 "transformadapter.cc", | 516 "transformadapter.cc", |
516 "transformadapter.h", | 517 "transformadapter.h", |
517 "virtualsocketserver.cc", | 518 "virtualsocketserver.cc", |
518 "virtualsocketserver.h", | 519 "virtualsocketserver.h", |
519 "window.h", | 520 "window.h", |
520 ] | 521 ] |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 "messagequeue_unittest.cc", | 862 "messagequeue_unittest.cc", |
862 "nat_unittest.cc", | 863 "nat_unittest.cc", |
863 "network_unittest.cc", | 864 "network_unittest.cc", |
864 "optionsfile_unittest.cc", | 865 "optionsfile_unittest.cc", |
865 "proxy_unittest.cc", | 866 "proxy_unittest.cc", |
866 "ptr_util_unittest.cc", | 867 "ptr_util_unittest.cc", |
867 "ratelimiter_unittest.cc", | 868 "ratelimiter_unittest.cc", |
868 "rollingaccumulator_unittest.cc", | 869 "rollingaccumulator_unittest.cc", |
869 "rtccertificate_unittest.cc", | 870 "rtccertificate_unittest.cc", |
870 "rtccertificategenerator_unittest.cc", | 871 "rtccertificategenerator_unittest.cc", |
| 872 "scopedptrcollection_unittest.cc", |
871 "sha1digest_unittest.cc", | 873 "sha1digest_unittest.cc", |
872 "sharedexclusivelock_unittest.cc", | 874 "sharedexclusivelock_unittest.cc", |
873 "signalthread_unittest.cc", | 875 "signalthread_unittest.cc", |
874 "sigslot_unittest.cc", | 876 "sigslot_unittest.cc", |
875 "sigslottester_unittest.cc", | 877 "sigslottester_unittest.cc", |
876 "stream_unittest.cc", | 878 "stream_unittest.cc", |
877 "testclient_unittest.cc", | 879 "testclient_unittest.cc", |
878 "thread_unittest.cc", | 880 "thread_unittest.cc", |
879 ] | 881 ] |
880 if (is_win) { | 882 if (is_win) { |
(...skipping 28 matching lines...) Expand all Loading... |
909 | 911 |
910 if (is_android) { | 912 if (is_android) { |
911 android_library("base_java") { | 913 android_library("base_java") { |
912 java_files = [ | 914 java_files = [ |
913 "java/src/org/webrtc/Logging.java", | 915 "java/src/org/webrtc/Logging.java", |
914 "java/src/org/webrtc/Size.java", | 916 "java/src/org/webrtc/Size.java", |
915 "java/src/org/webrtc/ThreadUtils.java", | 917 "java/src/org/webrtc/ThreadUtils.java", |
916 ] | 918 ] |
917 } | 919 } |
918 } | 920 } |
OLD | NEW |