Create a dummy project for test runner
This CL adds a dummy project with 1 test in each size such that
we will always have a test run unless something is broken in the build.
This will prevent test runner from failing.
Bug: 112663465
Test: DumbTest
Change-Id: I290960fe3cd766d9ee621b2a3637405fd19fca61
diff --git a/settings.gradle b/settings.gradle
index e094902..7460b62 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -240,13 +240,14 @@
includeProject(":noto-emoji-compat", new File(externalRoot, "noto-fonts/emoji-compat"))
includeProject(":webview-support-interfaces", new File(externalRoot, "webview_support_interfaces"))
-///// FLATFOOT START
-
-///// FLATFOOT END
-
// fake project which is used for docs generation from prebuilts
// we need real android project to generate R.java, aidl etc files that mentioned in sources
if (!startParameter.projectProperties.containsKey('android.injected.invoked.from.ide')) {
// we don't need it in ide, so we don't configure it there
includeProject(":docs-fake", "docs-fake")
}
+
+// dumb test project that has a test for each size to ensure that at least one test is run
+// for each size and test runner is happy when there is nothing to test.
+includeProject(":dumb-tests", "dumb-tests")
+