diff options
author | Ying Wang <wangying@google.com> | 2012-03-13 18:58:27 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2012-03-13 19:12:21 -0700 |
commit | 160b670f4acfbcf85eb6baf1df156ada835a6a3e (patch) | |
tree | d24175a0b7321fe42530488f2ee94ad13658dd75 /core/main.mk | |
parent | bdbbd2062c4651541b2bd4f496480f3ac3be3b74 (diff) | |
download | build-160b670f4acfbcf85eb6baf1df156ada835a6a3e.zip build-160b670f4acfbcf85eb6baf1df156ada835a6a3e.tar.gz build-160b670f4acfbcf85eb6baf1df156ada835a6a3e.tar.bz2 |
Add build goal "tests".
Bug: 5368571
The phony build goal "tests" will eventually replace the build variant
tests.
Change-Id: Ia656f2cf2260feeaa8fa32e9221b7f9ce0990262
Diffstat (limited to 'core/main.mk')
-rw-r--r-- | core/main.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/main.mk b/core/main.mk index 5604df2..0084a0b 100644 --- a/core/main.mk +++ b/core/main.mk @@ -183,7 +183,7 @@ include $(BUILD_SYSTEM)/definitions.mk # Bring in dex_preopt.mk include $(BUILD_SYSTEM)/dex_preopt.mk -ifneq ($(filter eng user userdebug tests,$(MAKECMDGOALS)),) +ifneq ($(filter eng user userdebug,$(MAKECMDGOALS)),) $(info ***************************************************************) $(info ***************************************************************) $(info Don't pass '$(filter eng user userdebug tests,$(MAKECMDGOALS))' on \ @@ -797,8 +797,7 @@ endif # TARGET_BUILD_APPS endif # droid in $(MAKECMDGOALS) -.PHONY: droid tests -tests: droidcore +.PHONY: droid # phony target that include any targets in $(ALL_MODULES) .PHONY: all_modules |