A few LOCAL_ADDITIONAL_DEPENDENCIES were required, where LOCAL_REQUIRED_MODULES would be nicer, but you can't require a module of the same name. It would create a dependency loop with the current require implementation, so it's filtered by the build system. Also translate monkey from ALL_PREBUILTS to a prebuilt like the rest of the tools. This doesn't change anything, since 'monkey' is already in build/target/product/base.mk. ACP is being removed, so use the standard build system macros to copy files. Change-Id: I4f73c6b35c0d7ae25467145b0a9d5c32ba4578d2
18 lines
468 B
Makefile
18 lines
468 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
#
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
LOCAL_MODULE := monkeylib
|
|
LOCAL_MODULE_STEM := monkey
|
|
include $(BUILD_JAVA_LIBRARY)
|
|
|
|
################################################################
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := monkey
|
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
|
LOCAL_SRC_FILES := monkey
|
|
LOCAL_REQUIRED_MODULES := monkeylib
|
|
include $(BUILD_PREBUILT)
|