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 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 "cpu_time.h", | 691 "cpu_time.h", |
692 "fakeclock.cc", | 692 "fakeclock.cc", |
693 "fakeclock.h", | 693 "fakeclock.h", |
694 "fakenetwork.h", | 694 "fakenetwork.h", |
695 "fakesslidentity.h", | 695 "fakesslidentity.h", |
696 "firewallsocketserver.cc", | 696 "firewallsocketserver.cc", |
697 "firewallsocketserver.h", | 697 "firewallsocketserver.h", |
698 "gunit.h", | 698 "gunit.h", |
699 "httpserver.cc", | 699 "httpserver.cc", |
700 "httpserver.h", | 700 "httpserver.h", |
| 701 "memory_usage.cc", |
| 702 "memory_usage.h", |
701 "natserver.cc", | 703 "natserver.cc", |
702 "natserver.h", | 704 "natserver.h", |
703 "natsocketfactory.cc", | 705 "natsocketfactory.cc", |
704 "natsocketfactory.h", | 706 "natsocketfactory.h", |
705 "nattypes.cc", | 707 "nattypes.cc", |
706 "nattypes.h", | 708 "nattypes.h", |
707 "proxyserver.cc", | 709 "proxyserver.cc", |
708 "proxyserver.h", | 710 "proxyserver.h", |
709 "sigslottester.h", | 711 "sigslottester.h", |
710 "sigslottester.h.pump", | 712 "sigslottester.h.pump", |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 testonly = true | 848 testonly = true |
847 sources = [ | 849 sources = [ |
848 "callback_unittest.cc", | 850 "callback_unittest.cc", |
849 "crc32_unittest.cc", | 851 "crc32_unittest.cc", |
850 "fileutils_unittest.cc", | 852 "fileutils_unittest.cc", |
851 "helpers_unittest.cc", | 853 "helpers_unittest.cc", |
852 "httpbase_unittest.cc", | 854 "httpbase_unittest.cc", |
853 "httpcommon_unittest.cc", | 855 "httpcommon_unittest.cc", |
854 "httpserver_unittest.cc", | 856 "httpserver_unittest.cc", |
855 "ipaddress_unittest.cc", | 857 "ipaddress_unittest.cc", |
| 858 "memory_usage_unittest.cc", |
856 "messagedigest_unittest.cc", | 859 "messagedigest_unittest.cc", |
857 "messagequeue_unittest.cc", | 860 "messagequeue_unittest.cc", |
858 "nat_unittest.cc", | 861 "nat_unittest.cc", |
859 "network_unittest.cc", | 862 "network_unittest.cc", |
860 "optionsfile_unittest.cc", | 863 "optionsfile_unittest.cc", |
861 "proxy_unittest.cc", | 864 "proxy_unittest.cc", |
862 "ratelimiter_unittest.cc", | 865 "ratelimiter_unittest.cc", |
863 "rollingaccumulator_unittest.cc", | 866 "rollingaccumulator_unittest.cc", |
864 "rtccertificate_unittest.cc", | 867 "rtccertificate_unittest.cc", |
865 "rtccertificategenerator_unittest.cc", | 868 "rtccertificategenerator_unittest.cc", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
907 | 910 |
908 if (is_android) { | 911 if (is_android) { |
909 android_library("base_java") { | 912 android_library("base_java") { |
910 java_files = [ | 913 java_files = [ |
911 "java/src/org/webrtc/Logging.java", | 914 "java/src/org/webrtc/Logging.java", |
912 "java/src/org/webrtc/Size.java", | 915 "java/src/org/webrtc/Size.java", |
913 "java/src/org/webrtc/ThreadUtils.java", | 916 "java/src/org/webrtc/ThreadUtils.java", |
914 ] | 917 ] |
915 } | 918 } |
916 } | 919 } |
OLD | NEW |