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

Side by Side Diff: tools/gn/secondary/base/BUILD.gn

Issue 25698002: (mostly) working wtf / wtf_unittests gn targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 config("base_libs") { 5 config("base_libs") {
6 if (!is_win) { 6 if (!is_win) {
7 libs = [ "dl" ] 7 libs = [ "dl" ]
8 } 8 }
9 } 9 }
10 10
(...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 "test/expectations/expectation.cc", 877 "test/expectations/expectation.cc",
878 "test/expectations/expectation.h", 878 "test/expectations/expectation.h",
879 "test/expectations/parser.cc", 879 "test/expectations/parser.cc",
880 "test/expectations/parser.h", 880 "test/expectations/parser.h",
881 "test/gtest_xml_util.cc", 881 "test/gtest_xml_util.cc",
882 "test/gtest_xml_util.h", 882 "test/gtest_xml_util.h",
883 "test/launcher/parallel_test_launcher.cc", 883 "test/launcher/parallel_test_launcher.cc",
884 "test/launcher/parallel_test_launcher.h", 884 "test/launcher/parallel_test_launcher.h",
885 "test/launcher/test_launcher.cc", 885 "test/launcher/test_launcher.cc",
886 "test/launcher/test_launcher.h", 886 "test/launcher/test_launcher.h",
887 "test/launcher/test_results_tracker.cc",
888 "test/launcher/test_results_tracker.h",
887 "test/launcher/unit_test_launcher.cc", 889 "test/launcher/unit_test_launcher.cc",
888 "test/launcher/unit_test_launcher.h", 890 "test/launcher/unit_test_launcher.h",
889 "test/launcher/unit_test_launcher_ios.cc", 891 "test/launcher/unit_test_launcher_ios.cc",
890 "test/mock_chrome_application_mac.h", 892 "test/mock_chrome_application_mac.h",
891 "test/mock_chrome_application_mac.mm", 893 "test/mock_chrome_application_mac.mm",
892 "test/mock_devices_changed_observer.cc", 894 "test/mock_devices_changed_observer.cc",
893 "test/mock_devices_changed_observer.h", 895 "test/mock_devices_changed_observer.h",
894 "test/mock_time_provider.cc", 896 "test/mock_time_provider.cc",
895 "test/mock_time_provider.h", 897 "test/mock_time_provider.h",
896 "test/multiprocess_test.cc", 898 "test/multiprocess_test.cc",
897 "test/multiprocess_test.h", 899 "test/multiprocess_test.h",
898 "test/multiprocess_test_android.cc", 900 "test/multiprocess_test_android.cc",
899 "test/null_task_runner.cc", 901 "test/null_task_runner.cc",
900 "test/null_task_runner.h", 902 "test/null_task_runner.h",
903 "test/perf_log.cc",
904 "test/perf_log.h",
901 "test/perf_test_suite.cc", 905 "test/perf_test_suite.cc",
902 "test/perf_test_suite.h", 906 "test/perf_test_suite.h",
907 "test/perf_time_logger.cc",
908 "test/perf_time_logger.h",
909 "test/power_monitor_test_base.cc",
910 "test/power_monitor_test_base.h",
903 "test/scoped_locale.cc", 911 "test/scoped_locale.cc",
904 "test/scoped_locale.h", 912 "test/scoped_locale.h",
905 "test/scoped_path_override.cc", 913 "test/scoped_path_override.cc",
906 "test/scoped_path_override.h", 914 "test/scoped_path_override.h",
907 "test/sequenced_task_runner_test_template.cc", 915 "test/sequenced_task_runner_test_template.cc",
908 "test/sequenced_task_runner_test_template.h", 916 "test/sequenced_task_runner_test_template.h",
909 "test/sequenced_worker_pool_owner.cc", 917 "test/sequenced_worker_pool_owner.cc",
910 "test/sequenced_worker_pool_owner.h", 918 "test/sequenced_worker_pool_owner.h",
911 "test/simple_test_clock.cc", 919 "test/simple_test_clock.cc",
912 "test/simple_test_clock.h", 920 "test/simple_test_clock.h",
(...skipping 30 matching lines...) Expand all
943 "test/test_timeouts.h", 951 "test/test_timeouts.h",
944 "test/thread_test_helper.cc", 952 "test/thread_test_helper.cc",
945 "test/thread_test_helper.h", 953 "test/thread_test_helper.h",
946 "test/trace_event_analyzer.cc", 954 "test/trace_event_analyzer.cc",
947 "test/trace_event_analyzer.h", 955 "test/trace_event_analyzer.h",
948 "test/values_test_util.cc", 956 "test/values_test_util.cc",
949 "test/values_test_util.h", 957 "test/values_test_util.h",
950 ] 958 ]
951 deps = [ 959 deps = [
952 "//base", 960 "//base",
961 "//base/third_party/dynamic_annotations",
962 "//base:base_i18n",
953 "//base:base_static", 963 "//base:base_static",
954 "//base:base_i18n",
955 "//testing:gmock", 964 "//testing:gmock",
956 "//testing:gtest", 965 "//testing:gtest",
957 "//third_party/libxml" 966 "//third_party/libxml"
958 ] 967 ]
959 968
960 if (!is_posix) { 969 if (!is_posix) {
961 sources -= [ 970 sources -= [
962 "test/scoped_locale.cc", 971 "test/scoped_locale.cc",
963 "test/scoped_locale.h", 972 "test/scoped_locale.h",
964 ] 973 ]
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 static_library("run_all_unittests") { 1013 static_library("run_all_unittests") {
1005 external = true 1014 external = true
1006 sources = [ 1015 sources = [
1007 "test/run_all_unittests.cc", 1016 "test/run_all_unittests.cc",
1008 ] 1017 ]
1009 deps = [ 1018 deps = [
1010 ":test_support_base", 1019 ":test_support_base",
1011 ] 1020 ]
1012 } 1021 }
1013 1022
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698