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

Commit e70f61b1 authored by Brett Chabot's avatar Brett Chabot
Browse files

Retry test-runner tests move.

This time change the frameworks makefile so it only includes test-runner/src
in the public API.
parent fda25347
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -276,7 +276,7 @@ packages_to_document := \
# Search through the base framework dirs for these packages.
# The result will be relative to frameworks/base.
fwbase_dirs_to_document := \
	test-runner \
	test-runner/src \
	$(patsubst $(LOCAL_PATH)/%,%, \
	  $(wildcard \
	    $(foreach dir, $(FRAMEWORKS_BASE_JAVA_SRC_DIRS), \
+4 −1
Original line number Diff line number Diff line
@@ -18,10 +18,13 @@ LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_SRC_FILES := $(call all-java-files-under, src)

LOCAL_JAVA_LIBRARIES := core framework

LOCAL_MODULE:= android.test.runner

include $(BUILD_JAVA_LIBRARY)

# additionally, build unit tests in a separate .apk
include $(call all-makefiles-under,$(LOCAL_PATH))
Loading