Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ae9b508 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Don't add unused properties to android_test_import"

parents 4e9ffee4 2f83b31a
Loading
Loading
Loading
Loading
+12 −1
Original line number Original line Diff line number Diff line
@@ -500,7 +500,18 @@ type androidTestImportProperties struct {
type AndroidTestImport struct {
type AndroidTestImport struct {
	AndroidAppImport
	AndroidAppImport


	testProperties testProperties
	testProperties struct {
		// list of compatibility suites (for example "cts", "vts") that the module should be
		// installed into.
		Test_suites []string `android:"arch_variant"`

		// list of files or filegroup modules that provide data that should be installed alongside
		// the test
		Data []string `android:"path"`

		// Install the test into a folder named for the module in all test suites.
		Per_testcase_directory *bool
	}


	testImportProperties androidTestImportProperties
	testImportProperties androidTestImportProperties