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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 } | 632 } |
633 } | 633 } |
634 | 634 |
635 source_set("gtest_prod") { | 635 source_set("gtest_prod") { |
636 sources = [ | 636 sources = [ |
637 "gtest_prod_util.h", | 637 "gtest_prod_util.h", |
638 ] | 638 ] |
639 } | 639 } |
640 | 640 |
641 if (rtc_include_tests) { | 641 if (rtc_include_tests) { |
642 config("rtc_base_test_utils_exported_config") { | 642 config("rtc_base_tests_utils_exported_config") { |
643 defines = [ "GTEST_RELATIVE_PATH" ] | 643 defines = [ "GTEST_RELATIVE_PATH" ] |
644 } | 644 } |
645 | 645 |
646 source_set("rtc_base_test_utils") { | 646 source_set("rtc_base_tests_utils") { |
647 testonly = true | 647 testonly = true |
648 sources = [ | 648 sources = [ |
649 # Also use this as a convenient dumping ground for misc files that are | 649 # Also use this as a convenient dumping ground for misc files that are |
650 # included by multiple targets below. | 650 # included by multiple targets below. |
| 651 "fakeclock.cc", |
| 652 "fakeclock.h", |
651 "fakenetwork.h", | 653 "fakenetwork.h", |
652 "fakesslidentity.h", | 654 "fakesslidentity.h", |
653 "faketaskrunner.h", | 655 "faketaskrunner.h", |
654 "gunit.h", | 656 "gunit.h", |
655 "testbase64.h", | 657 "testbase64.h", |
656 "testechoserver.h", | 658 "testechoserver.h", |
657 "testutils.h", | 659 "testutils.h", |
| 660 "timedelta.h", |
658 "unittest_main.cc", | 661 "unittest_main.cc", |
659 ] | 662 ] |
660 configs += [ "..:common_config" ] | 663 configs += [ "..:common_config" ] |
661 public_configs = [ | 664 public_configs = [ |
662 "..:common_inherited_config", | 665 "..:common_inherited_config", |
663 ":rtc_base_test_utils_exported_config", | 666 ":rtc_base_tests_utils_exported_config", |
664 ] | 667 ] |
665 deps = [ | 668 deps = [ |
666 ":rtc_base", | 669 ":rtc_base", |
667 "../test:field_trial", | 670 "../test:field_trial", |
668 ] | 671 ] |
669 public_deps = [ | 672 public_deps = [ |
670 "//testing/gtest", | 673 "//testing/gtest", |
671 ] | 674 ] |
672 } | 675 } |
673 } | 676 } |
OLD | NEW |