diff options
-rw-r--r-- | tools/Android.mk | 2 | ||||
-rw-r--r-- | tools/class2greylist/test/Android.bp | 31 | ||||
-rw-r--r-- | tools/class2greylist/test/Android.mk | 32 |
3 files changed, 31 insertions, 34 deletions
diff --git a/tools/Android.mk b/tools/Android.mk index e90f5f5b45..9ecf0cd7ed 100644 --- a/tools/Android.mk +++ b/tools/Android.mk @@ -32,5 +32,3 @@ LOCAL_MODULE := art-script LOCAL_SRC_FILES := art LOCAL_MODULE_STEM := art include $(BUILD_PREBUILT) - -include $(LOCAL_PATH)/class2greylist/test/Android.mk diff --git a/tools/class2greylist/test/Android.bp b/tools/class2greylist/test/Android.bp new file mode 100644 index 0000000000..ed1fda2bd6 --- /dev/null +++ b/tools/class2greylist/test/Android.bp @@ -0,0 +1,31 @@ +// Copyright (C) 2018 The Android Open Source Project +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +java_test_host { + name: "class2greylisttest", + + // Only compile source java files in this apk. + srcs: ["src/**/*.java"], + + static_libs: [ + "class2greylistlib", + "truth-host-prebuilt", + "mockito-host", + "junit-host", + "objenesis", + ], + + // tag this module as a cts test artifact + test_suites: ["general-tests"], +} diff --git a/tools/class2greylist/test/Android.mk b/tools/class2greylist/test/Android.mk deleted file mode 100644 index f35e74c63d..0000000000 --- a/tools/class2greylist/test/Android.mk +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright (C) 2018 The Android Open Source Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -LOCAL_PATH := $(call my-dir) - -include $(CLEAR_VARS) - -# Only compile source java files in this apk. -LOCAL_SRC_FILES := $(call all-java-files-under, src) - -LOCAL_MODULE := class2greylisttest - -LOCAL_STATIC_JAVA_LIBRARIES := class2greylistlib truth-host-prebuilt mockito-host junit-host objenesis - -# tag this module as a cts test artifact -LOCAL_COMPATIBILITY_SUITE := general-tests - -include $(BUILD_HOST_JAVA_LIBRARY) - -# Build the test APKs using their own makefiles -include $(call all-makefiles-under,$(LOCAL_PATH)) |