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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 "crc32.cc", | 403 "crc32.cc", |
404 "crc32.h", | 404 "crc32.h", |
405 "cryptstring.cc", | 405 "cryptstring.cc", |
406 "cryptstring.h", | 406 "cryptstring.h", |
407 "diskcache.cc", | 407 "diskcache.cc", |
408 "diskcache.h", | 408 "diskcache.h", |
409 "filerotatingstream.cc", | 409 "filerotatingstream.cc", |
410 "filerotatingstream.h", | 410 "filerotatingstream.h", |
411 "fileutils.cc", | 411 "fileutils.cc", |
412 "fileutils.h", | 412 "fileutils.h", |
413 "firewallsocketserver.cc", | |
414 "firewallsocketserver.h", | |
415 "flags.cc", | 413 "flags.cc", |
416 "flags.h", | 414 "flags.h", |
417 "gunit_prod.h", | 415 "gunit_prod.h", |
418 "helpers.cc", | 416 "helpers.cc", |
419 "helpers.h", | 417 "helpers.h", |
420 "httpbase.cc", | 418 "httpbase.cc", |
421 "httpbase.h", | 419 "httpbase.h", |
422 "httpclient.cc", | 420 "httpclient.cc", |
423 "httpclient.h", | 421 "httpclient.h", |
424 "httpcommon-inl.h", | 422 "httpcommon-inl.h", |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 rtc_source_set("rtc_base_tests_utils") { | 766 rtc_source_set("rtc_base_tests_utils") { |
769 testonly = true | 767 testonly = true |
770 sources = [ | 768 sources = [ |
771 # Also use this as a convenient dumping ground for misc files that are | 769 # Also use this as a convenient dumping ground for misc files that are |
772 # included by multiple targets below. | 770 # included by multiple targets below. |
773 "fakeclock.cc", | 771 "fakeclock.cc", |
774 "fakeclock.h", | 772 "fakeclock.h", |
775 "fakenetwork.h", | 773 "fakenetwork.h", |
776 "fakesslidentity.h", | 774 "fakesslidentity.h", |
777 "faketaskrunner.h", | 775 "faketaskrunner.h", |
| 776 "firewallsocketserver.cc", |
| 777 "firewallsocketserver.h", |
778 "gunit.h", | 778 "gunit.h", |
779 "testbase64.h", | 779 "testbase64.h", |
780 "testechoserver.h", | 780 "testechoserver.h", |
781 "testutils.h", | 781 "testutils.h", |
782 "timedelta.h", | 782 "timedelta.h", |
783 "unittest_main.cc", | 783 "unittest_main.cc", |
784 ] | 784 ] |
785 configs += [ ":rtc_base_tests_utils_warnings_config" ] | 785 configs += [ ":rtc_base_tests_utils_warnings_config" ] |
786 public_configs = [ ":rtc_base_tests_utils_exported_config" ] | 786 public_configs = [ ":rtc_base_tests_utils_exported_config" ] |
787 deps = [ | 787 deps = [ |
(...skipping 18 matching lines...) Expand all Loading... |
806 "java/src/org/webrtc/Logging.java", | 806 "java/src/org/webrtc/Logging.java", |
807 "java/src/org/webrtc/Size.java", | 807 "java/src/org/webrtc/Size.java", |
808 "java/src/org/webrtc/ThreadUtils.java", | 808 "java/src/org/webrtc/ThreadUtils.java", |
809 ] | 809 ] |
810 | 810 |
811 deps = [ | 811 deps = [ |
812 "//base:base_java", | 812 "//base:base_java", |
813 ] | 813 ] |
814 } | 814 } |
815 } | 815 } |
OLD | NEW |