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

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: formatting 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
« no previous file with comments | « tools/gn/secondary/BUILD.gn ('k') | tools/gn/secondary/skia/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_result.cc",
888 "test/launcher/test_result.h",
889 "test/launcher/test_results_tracker.cc",
890 "test/launcher/test_results_tracker.h",
887 "test/launcher/unit_test_launcher.cc", 891 "test/launcher/unit_test_launcher.cc",
888 "test/launcher/unit_test_launcher.h", 892 "test/launcher/unit_test_launcher.h",
889 "test/launcher/unit_test_launcher_ios.cc", 893 "test/launcher/unit_test_launcher_ios.cc",
890 "test/mock_chrome_application_mac.h", 894 "test/mock_chrome_application_mac.h",
891 "test/mock_chrome_application_mac.mm", 895 "test/mock_chrome_application_mac.mm",
892 "test/mock_devices_changed_observer.cc", 896 "test/mock_devices_changed_observer.cc",
893 "test/mock_devices_changed_observer.h", 897 "test/mock_devices_changed_observer.h",
894 "test/mock_time_provider.cc", 898 "test/mock_time_provider.cc",
895 "test/mock_time_provider.h", 899 "test/mock_time_provider.h",
896 "test/multiprocess_test.cc", 900 "test/multiprocess_test.cc",
897 "test/multiprocess_test.h", 901 "test/multiprocess_test.h",
898 "test/multiprocess_test_android.cc", 902 "test/multiprocess_test_android.cc",
899 "test/null_task_runner.cc", 903 "test/null_task_runner.cc",
900 "test/null_task_runner.h", 904 "test/null_task_runner.h",
905 "test/perf_log.cc",
906 "test/perf_log.h",
901 "test/perf_test_suite.cc", 907 "test/perf_test_suite.cc",
902 "test/perf_test_suite.h", 908 "test/perf_test_suite.h",
909 "test/perf_time_logger.cc",
910 "test/perf_time_logger.h",
911 "test/power_monitor_test_base.cc",
912 "test/power_monitor_test_base.h",
903 "test/scoped_locale.cc", 913 "test/scoped_locale.cc",
904 "test/scoped_locale.h", 914 "test/scoped_locale.h",
905 "test/scoped_path_override.cc", 915 "test/scoped_path_override.cc",
906 "test/scoped_path_override.h", 916 "test/scoped_path_override.h",
907 "test/sequenced_task_runner_test_template.cc", 917 "test/sequenced_task_runner_test_template.cc",
908 "test/sequenced_task_runner_test_template.h", 918 "test/sequenced_task_runner_test_template.h",
909 "test/sequenced_worker_pool_owner.cc", 919 "test/sequenced_worker_pool_owner.cc",
910 "test/sequenced_worker_pool_owner.h", 920 "test/sequenced_worker_pool_owner.h",
911 "test/simple_test_clock.cc", 921 "test/simple_test_clock.cc",
912 "test/simple_test_clock.h", 922 "test/simple_test_clock.h",
913 "test/simple_test_tick_clock.cc", 923 "test/simple_test_tick_clock.cc",
914 "test/simple_test_tick_clock.h", 924 "test/simple_test_tick_clock.h",
915 "test/task_runner_test_template.cc", 925 "test/task_runner_test_template.cc",
916 "test/task_runner_test_template.h", 926 "test/task_runner_test_template.h",
927 "test/test_file_util.cc",
917 "test/test_file_util.h", 928 "test/test_file_util.h",
918 "test/test_file_util_linux.cc", 929 "test/test_file_util_linux.cc",
919 "test/test_file_util_mac.cc", 930 "test/test_file_util_mac.cc",
920 "test/test_file_util_posix.cc", 931 "test/test_file_util_posix.cc",
921 "test/test_file_util_win.cc", 932 "test/test_file_util_win.cc",
922 "test/test_listener_ios.h", 933 "test/test_listener_ios.h",
923 "test/test_listener_ios.mm", 934 "test/test_listener_ios.mm",
924 "test/test_pending_task.cc", 935 "test/test_pending_task.cc",
925 "test/test_pending_task.h", 936 "test/test_pending_task.h",
926 "test/test_process_killer_win.cc", 937 "test/test_process_killer_win.cc",
(...skipping 16 matching lines...) Expand all
943 "test/test_timeouts.h", 954 "test/test_timeouts.h",
944 "test/thread_test_helper.cc", 955 "test/thread_test_helper.cc",
945 "test/thread_test_helper.h", 956 "test/thread_test_helper.h",
946 "test/trace_event_analyzer.cc", 957 "test/trace_event_analyzer.cc",
947 "test/trace_event_analyzer.h", 958 "test/trace_event_analyzer.h",
948 "test/values_test_util.cc", 959 "test/values_test_util.cc",
949 "test/values_test_util.h", 960 "test/values_test_util.h",
950 ] 961 ]
951 deps = [ 962 deps = [
952 "//base", 963 "//base",
964 "//base/third_party/dynamic_annotations",
965 "//base:base_i18n",
953 "//base:base_static", 966 "//base:base_static",
954 "//base:base_i18n",
955 "//testing:gmock", 967 "//testing:gmock",
956 "//testing:gtest", 968 "//testing:gtest",
957 "//third_party/libxml" 969 "//third_party/libxml"
958 ] 970 ]
959 971
960 if (!is_posix) { 972 if (!is_posix) {
961 sources -= [ 973 sources -= [
962 "test/scoped_locale.cc", 974 "test/scoped_locale.cc",
963 "test/scoped_locale.h", 975 "test/scoped_locale.h",
964 ] 976 ]
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 static_library("run_all_unittests") { 1016 static_library("run_all_unittests") {
1005 external = true 1017 external = true
1006 sources = [ 1018 sources = [
1007 "test/run_all_unittests.cc", 1019 "test/run_all_unittests.cc",
1008 ] 1020 ]
1009 deps = [ 1021 deps = [
1010 ":test_support_base", 1022 ":test_support_base",
1011 ] 1023 ]
1012 } 1024 }
1013 1025
OLDNEW
« no previous file with comments | « tools/gn/secondary/BUILD.gn ('k') | tools/gn/secondary/skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698