Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2050313002: GN: Add rtc_media_unittests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 "fakenetwork.h", 651 "fakenetwork.h",
652 "fakesslidentity.h", 652 "fakesslidentity.h",
653 "faketaskrunner.h", 653 "faketaskrunner.h",
654 "gunit.h", 654 "gunit.h",
655 "testbase64.h", 655 "testbase64.h",
656 "testechoserver.h", 656 "testechoserver.h",
657 "testutils.h", 657 "testutils.h",
658 "unittest_main.cc", 658 "unittest_main.cc",
659 ] 659 ]
660 configs += [ "..:common_config" ] 660 configs += [ "..:common_config" ]
661 public_configs = [ 661 public_configs = [
662 "..:common_inherited_config", 662 "..:common_inherited_config",
663 ":rtc_base_test_utils_exported_config", 663 ":rtc_base_tests_utils_exported_config",
664 ] 664 ]
665 deps = [ 665 deps = [
666 ":rtc_base", 666 ":rtc_base",
667 "../test:field_trial", 667 "../test:field_trial",
668 ] 668 ]
669 public_deps = [ 669 public_deps = [
670 "//testing/gtest", 670 "//testing/gtest",
671 ] 671 ]
672 } 672 }
673 } 673 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/media/BUILD.gn » ('j') | webrtc/media/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698