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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2831243002: Revert of Address some TODO(GYP_GONE)s (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « chrome/installer/linux/BUILD.gn ('k') | content/test/gpu/generate_buildbot_json.py » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "//ash/test:test_support_with_content", 243 "//ash/test:test_support_with_content",
244 "//ui/aura", 244 "//ui/aura",
245 "//ui/aura:test_support", 245 "//ui/aura:test_support",
246 ] 246 ]
247 } 247 }
248 if (toolkit_views) { 248 if (toolkit_views) {
249 public_deps += [ "//ui/views:test_support" ] 249 public_deps += [ "//ui/views:test_support" ]
250 } 250 }
251 } 251 }
252 252
253 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
254 # The _run targets exist only for compatibility w/ GYP.
255 group("telemetry_gpu_integration_test_run") {
256 testonly = true
257 deps = [
258 ":telemetry_gpu_integration_test",
259 ]
260 }
261
253 group("telemetry_gpu_integration_test") { 262 group("telemetry_gpu_integration_test") {
254 testonly = true 263 testonly = true
255 deps = [ 264 deps = [
256 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 265 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
257 ] 266 ]
258 267
259 data = [ 268 data = [
260 # For isolate contract. 269 # For isolate contract.
261 "//testing/scripts/common.py", 270 "//testing/scripts/common.py",
262 "//testing/xvfb.py", 271 "//testing/xvfb.py",
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
1081 sources += 1090 sources +=
1082 [ "data/webui/media_router/media_router_elements_browsertest.js" ] 1091 [ "data/webui/media_router/media_router_elements_browsertest.js" ]
1083 } 1092 }
1084 deps = [ 1093 deps = [
1085 "//chrome/browser/ui", 1094 "//chrome/browser/ui",
1086 "//skia", 1095 "//skia",
1087 ] 1096 ]
1088 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 1097 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
1089 } 1098 }
1090 1099
1100 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
1101 # The _run targets exist only for compatibility w/ GYP.
1102 group("telemetry_unittests_run") {
1103 testonly = true
1104 deps = [
1105 ":telemetry_unittests",
1106 ]
1107 }
1108
1091 group("telemetry_unittests") { 1109 group("telemetry_unittests") {
1092 testonly = true 1110 testonly = true
1093 deps = [ 1111 deps = [
1094 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 1112 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
1095 ] 1113 ]
1096 1114
1097 data = [ 1115 data = [
1098 "//tools/perf/run_telemetry_tests", 1116 "//tools/perf/run_telemetry_tests",
1099 1117
1100 # For isolate contract. 1118 # For isolate contract.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 # From telemetry_gpu_unittests.isolate 1151 # From telemetry_gpu_unittests.isolate
1134 "//third_party/pylint/", 1152 "//third_party/pylint/",
1135 "//third_party/logilab/", 1153 "//third_party/logilab/",
1136 "//testing/scripts/common.py", 1154 "//testing/scripts/common.py",
1137 "//testing/xvfb.py", 1155 "//testing/xvfb.py",
1138 "//testing/scripts/run_telemetry_as_googletest.py", 1156 "//testing/scripts/run_telemetry_as_googletest.py",
1139 ] 1157 ]
1140 } 1158 }
1141 1159
1142 # TODO(GYP_GONE): Delete this after we've converted everything to GN. 1160 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
1143 # This target exist only for compatibility w/ GYP. 1161 # The _run targets exist only for compatibility w/ GYP.
1144 group("tab_capture_end2end_tests") { 1162 group("tab_capture_end2end_tests_run") {
1145 testonly = true 1163 testonly = true
1146 deps = [ 1164 deps = [
1147 ":browser_tests", 1165 ":browser_tests",
1148 ] 1166 ]
1149 } 1167 }
1150 } 1168 }
1151 1169
1152 static_library("browser_tests_runner") { 1170 static_library("browser_tests_runner") {
1153 testonly = true 1171 testonly = true
1154 sources = [] 1172 sources = []
(...skipping 1817 matching lines...) Expand 10 before | Expand all | Expand 10 after
2972 "//testing/xvfb.py", 2990 "//testing/xvfb.py",
2973 "//testing/scripts/run_gtest_perf_test.py", 2991 "//testing/scripts/run_gtest_perf_test.py",
2974 "//tools/perf/generate_legacy_perf_dashboard_json.py", 2992 "//tools/perf/generate_legacy_perf_dashboard_json.py",
2975 ] 2993 ]
2976 2994
2977 # This target should not require the Chrome executable to run. 2995 # This target should not require the Chrome executable to run.
2978 assert_no_deps = [ "//chrome" ] 2996 assert_no_deps = [ "//chrome" ]
2979 } 2997 }
2980 } 2998 }
2981 2999
3000 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
3001 # The _run targets exist only for compatibility w/ GYP.
3002 group("telemetry_perf_unittests_run") {
3003 testonly = true
3004 deps = [
3005 ":telemetry_perf_unittests",
3006 ]
3007 }
3008
2982 group("telemetry_perf_unittests") { 3009 group("telemetry_perf_unittests") {
2983 testonly = true 3010 testonly = true
2984 deps = [ 3011 deps = [
2985 "//tools/perf:perf", 3012 "//tools/perf:perf",
2986 ] 3013 ]
2987 3014
2988 data = [ 3015 data = [
2989 # For isolate contract. 3016 # For isolate contract.
2990 "//testing/scripts/common.py", 3017 "//testing/scripts/common.py",
2991 "//testing/xvfb.py", 3018 "//testing/xvfb.py",
(...skipping 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after
5152 deps = [ 5179 deps = [
5153 "//base:base_java", 5180 "//base:base_java",
5154 "//chrome/android:app_hooks_java", 5181 "//chrome/android:app_hooks_java",
5155 "//chrome/android:chrome_java", 5182 "//chrome/android:chrome_java",
5156 "//content/public/android:content_java", 5183 "//content/public/android:content_java",
5157 ] 5184 ]
5158 } 5185 }
5159 } 5186 }
5160 5187
5161 if (is_chromeos && enable_package_mash_services) { 5188 if (is_chromeos && enable_package_mash_services) {
5189 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
5190 # The _run targets exist only for compatibility w/ GYP.
5191 group("mash_browser_tests_run") {
5192 testonly = true
5193 deps = [
5194 ":mash_browser_tests",
5195 ]
5196 }
5197
5162 group("mash_browser_tests") { 5198 group("mash_browser_tests") {
5163 testonly = true 5199 testonly = true
5164 data_deps = [ 5200 data_deps = [
5165 ":browser_tests", 5201 ":browser_tests",
5166 "//chrome/app/mash:mash_service_overrides", 5202 "//chrome/app/mash:mash_service_overrides",
5167 ] 5203 ]
5168 } 5204 }
5169 5205
5170 service_manifest("mash_browser_tests_manifest") { 5206 service_manifest("mash_browser_tests_manifest") {
5171 name = "mash_browser_tests" 5207 name = "mash_browser_tests"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
5208 } 5244 }
5209 5245
5210 if (is_win) { 5246 if (is_win) {
5211 loadable_module("conflicts_dll") { 5247 loadable_module("conflicts_dll") {
5212 testonly = true 5248 testonly = true
5213 sources = [ 5249 sources = [
5214 "conflicts/conflicts_dll.cc", 5250 "conflicts/conflicts_dll.cc",
5215 ] 5251 ]
5216 } 5252 }
5217 } 5253 }
OLDNEW
« no previous file with comments | « chrome/installer/linux/BUILD.gn ('k') | content/test/gpu/generate_buildbot_json.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698