ASM 6 is required to read version 53 (OpenJDK 9) class files.
Test: make EXPERIMENTAL_USE_OPENJDK9=true services.core
(in the presence of other unsubmitted CLs that fix
other issues)
Test: Copied all required dependencies into a subdirectory lib/,
then ran the steps from TestMain.java, both for OpenJDK 8
and OpenJDK 9 toolchains.
Bug: 67676752
Change-Id: If324d8ea28450d9a8426a2279190b2f4d9213ed5
16 lines
365 B
Makefile
16 lines
365 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_JAR_MANIFEST := manifest.txt
|
|
LOCAL_MODULE := lockedregioncodeinjection
|
|
LOCAL_SRC_FILES := $(call all-java-files-under,src)
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
asm-6.0_BETA \
|
|
asm-commons-6.0_BETA \
|
|
asm-tree-6.0_BETA \
|
|
asm-analysis-6.0_BETA \
|
|
guava-21.0 \
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|