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

Unified Diff: mojo/tools/data/apptests

Issue 1258903002: Extract `mojo_test` - standalone apptest runner in devtools. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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 | « mojo/tools/apptest_runner.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/data/apptests
diff --git a/mojo/tools/data/apptests b/mojo/tools/data/apptests
index 1087fd11874c682e49e66eef854db15db7b3aaee..18693f1b286ba9cf3348b2308c8dfce5f1d26f8a 100644
--- a/mojo/tools/data/apptests
+++ b/mojo/tools/data/apptests
@@ -73,7 +73,7 @@ tests = [
},
]
-if config.target_os == config.OS_LINUX:
+if target_os == 'linux':
tests += [
{
"test": "mojo:example_apptests",
@@ -92,7 +92,7 @@ if config.target_os == config.OS_LINUX:
}
]
-if config.target_os == config.OS_ANDROID:
+if target_os == 'android':
tests += [
{
"test": "mojo:example_apptests",
@@ -111,7 +111,7 @@ if config.target_os == config.OS_ANDROID:
},
]
-if config.target_os != config.OS_ANDROID:
+if target_os != 'android':
tests += [
{
"test": "mojo:js_apptests",
« no previous file with comments | « mojo/tools/apptest_runner.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698