aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-10-07 01:32:18 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-10-07 01:32:18 +0000
commit7c22d295a0a7e1d3024666ad09dd87792773b5f9 (patch)
tree99d84f7cfa66d8bb200d94395d2468ea4ffbb1bf
parente28fab5f40c3c8f64666c6e46f9b0992673e9067 (diff)
parent22a8daa6399bad95f385ba389d0bb1d5f4b9dd1c (diff)
downloadjacoco-7c22d295a0a7e1d3024666ad09dd87792773b5f9.tar.gz
Convert jacoco to Android.bp am: 919bf5c9b5 am: adffb95cd0 am: 966432bdb5
am: 22a8daa639 Change-Id: I45c4c42fa635759bb833798fe566e7e101fb707d
-rw-r--r--Android.bp91
-rw-r--r--Android.mk86
2 files changed, 92 insertions, 85 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 00000000..40c1c206
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,91 @@
+//
+// Copyright (C) 2016 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.
+//
+
+// Some Jacoco source files depend on classes that do not exist in Android. While these classes are
+// not executed at runtime (because we use offline instrumentation), they will cause issues when
+// compiling them with ART during dex pre-opting. Therefore, it would prevent from applying code
+// coverage on classes in the bootclasspath (frameworks, services, ...) or system apps.
+// Note: we still may need to update the source code to cut dependencies in mandatory jacoco classes.
+jacoco_android_exclude_list = [
+ "%org.jacoco.core/src/org/jacoco/core/runtime/ModifiedSystemClassRuntime.java",
+ "%org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/PreMain.java",
+ "%org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/CoverageTransformer.java",
+ "%org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/JmxRegistration.java",
+]
+
+// Build jacoco-agent from sources for the platform
+//
+// Note: this is only intended to be used for the platform development. This is *not* intended
+// to be used in the SDK where apps can use the official jacoco release.
+java_library_static {
+ name: "jacocoagent",
+
+ srcs: [
+ "org.jacoco.core/src/**/*.java",
+ "org.jacoco.agent/src/**/*.java",
+ "org.jacoco.agent.rt/src/**/*.java",
+ ],
+
+ exclude_srcs: [
+ "org.jacoco.core/src/org/jacoco/core/runtime/ModifiedSystemClassRuntime.java",
+ "org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/PreMain.java",
+ "org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/CoverageTransformer.java",
+ "org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/JmxRegistration.java",
+ ],
+
+ // In order to include Jacoco in core libraries, we cannot depend on anything in the
+ // bootclasspath (or we would create dependency cycle). Therefore we compile against
+ // the SDK android.jar which gives the same APIs Jacoco depends on.
+ sdk_version: "9",
+
+ static_libs: ["jacoco-asm"],
+}
+
+// Build jacoco-cli from sources for the platform
+
+// TODO(jeffrygaston) it'd be nice to keep the build process and/or list of source files in sync with
+// what is defined in the pom.xml files, although it's probably much more trouble than it's worth
+java_library_host {
+ name: "jacoco-cli",
+
+ manifest: "org.jacoco.cli/src/MANIFEST.MF",
+
+ srcs: [
+ "org.jacoco.core/src/**/*.java",
+ "org.jacoco.report/src/**/*.java",
+ "org.jacoco.cli/src/**/*.java",
+ ],
+
+ java_resource_dirs: [
+ "org.jacoco.core/src",
+ "org.jacoco.report/src",
+ ],
+
+ static_libs: [
+ "jacoco-asm",
+ "args4j-2.0.28",
+ ],
+}
+
+//
+// Build asm-5.0.1 as a static library
+//
+java_import {
+ name: "jacoco-asm",
+ host_supported: true,
+
+ jars: ["asm-debug-all-5.0.1.jar"],
+}
diff --git a/Android.mk b/Android.mk
index 5ba54801..c708fc7f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -15,91 +15,7 @@
#
LOCAL_PATH := $(call my-dir)
-# Some Jacoco source files depend on classes that do not exist in Android. While these classes are
-# not executed at runtime (because we use offline instrumentation), they will cause issues when
-# compiling them with ART during dex pre-opting. Therefore, it would prevent from applying code
-# coverage on classes in the bootclasspath (frameworks, services, ...) or system apps.
-# Note: we still may need to update the source code to cut dependencies in mandatory jacoco classes.
-jacoco_android_exclude_list := \
- %org.jacoco.core/src/org/jacoco/core/runtime/ModifiedSystemClassRuntime.java \
- %org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/PreMain.java \
- %org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/CoverageTransformer.java \
- %org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/JmxRegistration.java
-
-
-# Build jacoco-agent from sources for the platform
-#
-# Note: this is only intended to be used for the platform development. This is *not* intended
-# to be used in the SDK where apps can use the official jacoco release.
-include $(CLEAR_VARS)
-
-jacocoagent_src_files := $(call all-java-files-under,org.jacoco.core/src)
-jacocoagent_src_files += $(call all-java-files-under,org.jacoco.agent/src)
-jacocoagent_src_files += $(call all-java-files-under,org.jacoco.agent.rt/src)
-
-LOCAL_SRC_FILES := $(filter-out $(jacoco_android_exclude_list),$(jacocoagent_src_files))
-
-# In order to include Jacoco in core libraries, we cannot depend on anything in the
-# bootclasspath (or we would create dependency cycle). Therefore we compile against
-# the SDK android.jar which gives the same APIs Jacoco depends on.
-LOCAL_SDK_VERSION := 9
-
-LOCAL_MODULE := jacocoagent
-LOCAL_MODULE_TAGS := optional
-LOCAL_STATIC_JAVA_LIBRARIES := jacoco-asm
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
-
-# Build jacoco-cli from sources for the platform
-include $(CLEAR_VARS)
-
-# TODO(jeffrygaston) it'd be nice to keep the build process and/or list of source files in sync with
-# what is defined in the pom.xml files, although it's probably much more trouble than it's worth
-jacococli_src_files += $(call all-java-files-under,org.jacoco.core/src)
-jacococli_src_files += $(call all-java-files-under,org.jacoco.report/src)
-jacococli_src_files += $(call all-java-files-under,org.jacoco.cli/src)
-LOCAL_JAVA_RESOURCE_DIRS := org.jacoco.core/src org.jacoco.report/src
-LOCAL_JAR_MANIFEST := org.jacoco.cli/src/MANIFEST.MF
-
-LOCAL_SRC_FILES := $(jacococli_src_files)
-
-LOCAL_MODULE := jacoco-cli
-LOCAL_STATIC_JAVA_LIBRARIES := jacoco-asm-host args4j-2.0.28
-
-include $(BUILD_HOST_JAVA_LIBRARY)
-
# include jacoco-cli in the dist directory to enable running it to generate a code-coverage report
-ifeq ($(ANDROID_COMPILE_WITH_JACK),false)
ifeq ($(EMMA_INSTRUMENT),true)
-$(call dist-for-goals, dist_files, $(LOCAL_INSTALLED_MODULE))
+$(call dist-for-goals, dist_files, $(HOST_OUT_JAVA_LIBRARIES)/jacoco-cli.jar)
endif
-endif
-
-
-#
-# Build asm-5.0.1 as a static library for the device
-#
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := jacoco-asm
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_CLASS := JAVA_LIBRARIES
-LOCAL_SRC_FILES := asm-debug-all-5.0.1$(COMMON_JAVA_PACKAGE_SUFFIX)
-# Workaround for b/27319022
-LOCAL_JACK_FLAGS := -D jack.import.jar.debug-info=false
-LOCAL_UNINSTALLABLE_MODULE := true
-
-include $(BUILD_PREBUILT)
-
-
-#
-# Build asm-5.0.1 as a static library for the host
-#
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := jacoco-asm-host
-LOCAL_IS_HOST_MODULE := true
-LOCAL_MODULE_CLASS := JAVA_LIBRARIES
-LOCAL_SRC_FILES := asm-debug-all-5.0.1$(COMMON_JAVA_PACKAGE_SUFFIX)
-
-include $(BUILD_PREBUILT)