summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjbudorick <jbudorick@chromium.org>2016-02-03 15:40:16 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-03 23:41:01 +0000
commit3c0ef4309a77bbf172f081c99bbb33e732ea07af (patch)
tree3dbc3f8ce89bda5bfca4a356935db91adbda8097 /chrome
parentdb5cc6687e396fc77282e2c32c39731e20d4fb94 (diff)
downloadchromium_src-3c0ef4309a77bbf172f081c99bbb33e732ea07af.zip
chromium_src-3c0ef4309a77bbf172f081c99bbb33e732ea07af.tar.gz
chromium_src-3c0ef4309a77bbf172f081c99bbb33e732ea07af.tar.bz2
Move gn _run target generation into test(). (RELAND)
This is a reland of https://codereview.chromium.org/1653003006/ Consolidating the _run targets into the test template should make them easier to maintain (and, eventually, remove). BUG=583694 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1662053002 Cr-Commit-Position: refs/heads/master@{#373385}
Diffstat (limited to 'chrome')
-rw-r--r--chrome/test/BUILD.gn36
-rw-r--r--chrome/test/chromedriver/BUILD.gn9
2 files changed, 0 insertions, 45 deletions
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index fc73593..757fbbe 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -285,15 +285,6 @@ if (!is_android) {
]
}
- # 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,
@@ -779,15 +770,6 @@ if (!is_android) {
]
}
- # 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",
- ]
- }
-
test("browser_tests") {
sources = [
"base/browser_tests_main.cc",
@@ -1275,15 +1257,6 @@ if (!is_android) {
}
}
- # 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,
@@ -1482,15 +1455,6 @@ js2gtest("unit_tests_js") {
}
}
-# 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") {
sources = rebase_path(chrome_tests_unit_gypi_values.chrome_unit_tests_sources,
".",
diff --git a/chrome/test/chromedriver/BUILD.gn b/chrome/test/chromedriver/BUILD.gn
index 435b634..1684a67 100644
--- a/chrome/test/chromedriver/BUILD.gn
+++ b/chrome/test/chromedriver/BUILD.gn
@@ -190,15 +190,6 @@ executable("chromedriver") {
]
}
-# TODO(GYP): Delete this after we've converted everything to GN.
-# The _run targets exist only for compatibility w/ GYP.
-group("chromedriver_unittests_run") {
- testonly = true
- deps = [
- ":chromedriver_unittests",
- ]
-}
-
test("chromedriver_unittests") {
sources =
rebase_path(chrome_tests_gypi_values.chrome_driver_unittests_sources,