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

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

Issue 2569333002: Address some TODO(GYP_GONE)s (Closed)
Patch Set: reland 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
262 group("telemetry_gpu_integration_test") { 253 group("telemetry_gpu_integration_test") {
263 testonly = true 254 testonly = true
264 deps = [ 255 deps = [
265 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 256 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
266 ] 257 ]
267 258
268 data = [ 259 data = [
269 # For isolate contract. 260 # For isolate contract.
270 "//testing/scripts/common.py", 261 "//testing/scripts/common.py",
271 "//testing/xvfb.py", 262 "//testing/xvfb.py",
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
1087 if (!enable_print_preview) { 1078 if (!enable_print_preview) {
1088 sources -= [ "data/webui/print_preview.js" ] 1079 sources -= [ "data/webui/print_preview.js" ]
1089 } 1080 }
1090 deps = [ 1081 deps = [
1091 "//chrome/browser/ui", 1082 "//chrome/browser/ui",
1092 "//skia", 1083 "//skia",
1093 ] 1084 ]
1094 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 1085 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
1095 } 1086 }
1096 1087
1097 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
1098 # The _run targets exist only for compatibility w/ GYP.
1099 group("telemetry_unittests_run") {
1100 testonly = true
1101 deps = [
1102 ":telemetry_unittests",
1103 ]
1104 }
1105
1106 group("telemetry_unittests") { 1088 group("telemetry_unittests") {
1107 testonly = true 1089 testonly = true
1108 deps = [ 1090 deps = [
1109 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", 1091 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test",
1110 ] 1092 ]
1111 1093
1112 data = [ 1094 data = [
1113 "//tools/perf/run_telemetry_tests", 1095 "//tools/perf/run_telemetry_tests",
1114 1096
1115 # For isolate contract. 1097 # For isolate contract.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 # From telemetry_gpu_unittests.isolate 1130 # From telemetry_gpu_unittests.isolate
1149 "//third_party/pylint/", 1131 "//third_party/pylint/",
1150 "//third_party/logilab/", 1132 "//third_party/logilab/",
1151 "//testing/scripts/common.py", 1133 "//testing/scripts/common.py",
1152 "//testing/xvfb.py", 1134 "//testing/xvfb.py",
1153 "//testing/scripts/run_telemetry_as_googletest.py", 1135 "//testing/scripts/run_telemetry_as_googletest.py",
1154 ] 1136 ]
1155 } 1137 }
1156 1138
1157 # TODO(GYP_GONE): Delete this after we've converted everything to GN. 1139 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
1158 # The _run targets exist only for compatibility w/ GYP. 1140 # This target exist only for compatibility w/ GYP.
1159 group("tab_capture_end2end_tests_run") { 1141 group("tab_capture_end2end_tests") {
1160 testonly = true 1142 testonly = true
1161 deps = [ 1143 deps = [
1162 ":browser_tests", 1144 ":browser_tests",
1163 ] 1145 ]
1164 } 1146 }
1165 } 1147 }
1166 1148
1167 static_library("browser_tests_runner") { 1149 static_library("browser_tests_runner") {
1168 testonly = true 1150 testonly = true
1169 sources = [] 1151 sources = []
(...skipping 1811 matching lines...) Expand 10 before | Expand all | Expand 10 after
2981 "//testing/xvfb.py", 2963 "//testing/xvfb.py",
2982 "//testing/scripts/run_gtest_perf_test.py", 2964 "//testing/scripts/run_gtest_perf_test.py",
2983 "//tools/perf/generate_legacy_perf_dashboard_json.py", 2965 "//tools/perf/generate_legacy_perf_dashboard_json.py",
2984 ] 2966 ]
2985 2967
2986 # This target should not require the Chrome executable to run. 2968 # This target should not require the Chrome executable to run.
2987 assert_no_deps = [ "//chrome" ] 2969 assert_no_deps = [ "//chrome" ]
2988 } 2970 }
2989 } 2971 }
2990 2972
2991 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
2992 # The _run targets exist only for compatibility w/ GYP.
2993 group("telemetry_perf_unittests_run") {
2994 testonly = true
2995 deps = [
2996 ":telemetry_perf_unittests",
2997 ]
2998 }
2999
3000 group("telemetry_perf_unittests") { 2973 group("telemetry_perf_unittests") {
3001 testonly = true 2974 testonly = true
3002 deps = [ 2975 deps = [
3003 "//tools/perf:perf", 2976 "//tools/perf:perf",
3004 ] 2977 ]
3005 2978
3006 data = [ 2979 data = [
3007 # For isolate contract. 2980 # For isolate contract.
3008 "//testing/scripts/common.py", 2981 "//testing/scripts/common.py",
3009 "//testing/xvfb.py", 2982 "//testing/xvfb.py",
(...skipping 2153 matching lines...) Expand 10 before | Expand all | Expand 10 after
5163 deps = [ 5136 deps = [
5164 "//base:base_java", 5137 "//base:base_java",
5165 "//chrome/android:app_hooks_java", 5138 "//chrome/android:app_hooks_java",
5166 "//chrome/android:chrome_java", 5139 "//chrome/android:chrome_java",
5167 "//content/public/android:content_java", 5140 "//content/public/android:content_java",
5168 ] 5141 ]
5169 } 5142 }
5170 } 5143 }
5171 5144
5172 if (is_chromeos && enable_package_mash_services) { 5145 if (is_chromeos && enable_package_mash_services) {
5173 # TODO(GYP_GONE): Delete this after we've converted everything to GN.
5174 # The _run targets exist only for compatibility w/ GYP.
5175 group("mash_browser_tests_run") {
5176 testonly = true
5177 deps = [
5178 ":mash_browser_tests",
5179 ]
5180 }
5181
5182 group("mash_browser_tests") { 5146 group("mash_browser_tests") {
5183 testonly = true 5147 testonly = true
5184 data_deps = [ 5148 data_deps = [
5185 ":browser_tests", 5149 ":browser_tests",
5186 "//chrome/app/mash:mash_service_overrides", 5150 "//chrome/app/mash:mash_service_overrides",
5187 ] 5151 ]
5188 } 5152 }
5189 5153
5190 service_manifest("mash_browser_tests_manifest") { 5154 service_manifest("mash_browser_tests_manifest") {
5191 name = "mash_browser_tests" 5155 name = "mash_browser_tests"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
5228 } 5192 }
5229 5193
5230 if (is_win) { 5194 if (is_win) {
5231 loadable_module("conflicts_dll") { 5195 loadable_module("conflicts_dll") {
5232 testonly = true 5196 testonly = true
5233 sources = [ 5197 sources = [
5234 "conflicts/conflicts_dll.cc", 5198 "conflicts/conflicts_dll.cc",
5235 ] 5199 ]
5236 } 5200 }
5237 } 5201 }
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