aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorSebastien Hertz <shertz@google.com>2016-01-23 01:02:29 +0100
committerSebastien Hertz <shertz@google.com>2016-02-02 07:26:46 +0000
commitdd698e5a1fd80e0275980a608e5e3e9f5592378e (patch)
tree074f73257244cdd914ffae0acea5b12d53faa152 /Android.mk
parentee2e97d22f5be37d0b450317bc67ced53c0e57c3 (diff)
downloadjacoco-dd698e5a1fd80e0275980a608e5e3e9f5592378e.tar.gz
Build Jacoco as prebuiltandroid-n-preview-1
Jacoco is built with Maven to keep the advanced packaging behavior. We store the prebuilt so it can be used by the Android build system to apply code coverage onto an app. Jacoco relocates most of its classes under a package that can change each time we use Maven to update the prebuilt. Since Jack needs to know this package name, we store it into a config.mk file so the Android build system can read it and pass it to Jack. Bug: 20115492 Change-Id: I8dd6e6a100d5a672f0753a8adac0786659f90e93
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 00000000..d2edbc0a
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,23 @@
+#
+# 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.
+#
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_PREBUILT_JAVA_LIBRARIES := \
+ jacocoagent:org.jacoco.agent.rt-0.7.5.201505241946-all$(COMMON_JAVA_PACKAGE_SUFFIX)
+LOCAL_MODULE_TAGS := optional
+include $(BUILD_MULTI_PREBUILT)
+