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

Unified Diff: BUILD.gn

Issue 1918143004: Convert Mojo tests to use swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gin/BUILD.gn » ('j') | mojo/mojo_js_integration_tests.isolate » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 552e53d369e2a5f184d867f9aab9486d97ab4156..6be4369f9847c06d3fd2b1076a0922324b7b69fe 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -608,17 +608,38 @@ group("mojo_apptests") {
testonly = true
deps = []
+ data_deps = []
+ data = []
if (is_win || is_linux) {
- deps += [
- "//components/resource_provider:resource_provider_unittests",
- "//mash:mash_unittests",
- "//media/mojo/services:tests",
- "//ui/views/mus:tests",
+ deps += [ "//services/shell/standalone" ]
+ data_deps = [
+ "//media/mojo/services:media_apptests",
+ ]
+ if (is_linux) {
+ data_deps += [ "//tools/xdisplaycheck" ]
+ }
+ data += [
+ "//mojo/tools/apptest_runner.py",
+ "//mojo/tools/data/apptests",
+ "//mojo/tools/mopy/__init__.py",
jam 2016/04/28 15:59:29 just make this //mojo/tools/mopy/ you're listing
Sam McNally 2016/04/29 00:21:23 Done. I wasn't aware that GN allowed directories a
+ "//mojo/tools/mopy/android.py",
+ "//mojo/tools/mopy/config.py",
+ "//mojo/tools/mopy/gtest.py",
+ "//mojo/tools/mopy/paths.py",
+ "//testing/xvfb.py",
+ "//tools/swarming_client/utils/subprocess42.py",
]
}
}
+group("mojo_apptests_run") {
+ testonly = true
+ deps = [
+ ":mojo_apptests",
+ ]
+}
+
group("gn_only") {
testonly = true
« no previous file with comments | « no previous file | gin/BUILD.gn » ('j') | mojo/mojo_js_integration_tests.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698