From ce2843f4554ded9ad8221de4fd51d7fe3920a478 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Thu, 24 Sep 2015 11:34:46 -0700 Subject: [PATCH] The pattern %tests is too broad. We had fixed the filtering of %tests in art/Android.mk. Actually the %tests leads to false build.ninja when you run: $ mmma cts/tests/tests/nativeopengl/libnativeopengltests because the new mmma calls make with goals like MODULES-IN/cts/tests/tests/nativeopengl/libnativeopengltests . Bug: 24309760 Change-Id: I35af2e8d046ae40f3b90ec0a92473fcab8ff5db5 --- core/ninja.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ninja.mk b/core/ninja.mk index c469e0211..b9a0cec05 100644 --- a/core/ninja.mk +++ b/core/ninja.mk @@ -7,7 +7,7 @@ NINJA_GOALS := fastincremental generateonly droid showcommands PARSE_TIME_MAKE_GOALS := \ $(PARSE_TIME_MAKE_GOALS) \ $(dont_bother_goals) \ - %tests \ + tests \ APP-% \ DUMP_% \ ECLIPSE-% \