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

Unified Diff: chrome/test/BUILD.gn

Issue 1664653003: Revert of Move gn _run target generation into test(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/BUILD.gn ('k') | chrome/test/chromedriver/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 68b720bcf27baccf8fe55d7949f157091cbaef87..4d82fac024da14098a10806e242a1a14347e04a5 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -285,6 +285,15 @@
]
}
+ # TODO(GYP): Delete this after we've converted everything to GN.
+ # The _run targets exist only for compatibility w/ GYP.
+ group("interactive_ui_tests_run") {
+ testonly = true
+ deps = [
+ ":interactive_ui_tests",
+ ]
+ }
+
test("interactive_ui_tests") {
sources =
rebase_path(chrome_tests_gypi_values.chrome_interactive_ui_test_sources,
@@ -766,6 +775,15 @@
group("tab_capture_end2end_tests_run") {
testonly = true
deps = [
+ ":browser_tests",
+ ]
+ }
+
+ # TODO(GYP): Delete this after we've converted everything to GN.
+ # The _run targets exist only for compatibility w/ GYP.
+ group("browser_tests_run") {
+ testonly = true
+ data_deps = [
":browser_tests",
]
}
@@ -1257,6 +1275,15 @@
}
}
+ # TODO(GYP): Delete this after we've converted everything to GN.
+ # The _run targets exist only for compatibility w/ GYP.
+ group("sync_integration_tests_run") {
+ testonly = true
+ deps = [
+ ":sync_integration_tests",
+ ]
+ }
+
test("sync_integration_tests") {
sources =
rebase_path(chrome_tests_gypi_values.sync_integration_tests_sources,
@@ -1453,6 +1480,15 @@
".",
"//chrome")
}
+}
+
+# TODO(GYP): Delete this after we've converted everything to GN.
+# The _run targets exist only for compatibility w/ GYP.
+group("unit_tests_run") {
+ testonly = true
+ deps = [
+ ":unit_tests",
+ ]
}
test("unit_tests") {
« no previous file with comments | « cc/BUILD.gn ('k') | chrome/test/chromedriver/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698