aboutsummaryrefslogtreecommitdiff
path: root/hamcrest-core/Android.mk
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-10-13 08:09:05 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-10-13 08:09:05 +0000
commit73556320dbc887f9a6bf31ed58666e099fe371de (patch)
tree29674f3f18ba63345cd6ba0efaf719857207d3be /hamcrest-core/Android.mk
parent3408e0e6c43de58ba35b06e6c4b612dc86d342c9 (diff)
parent086d9d51dc7c71ce8713f95e27efe53cb3363a8e (diff)
downloadhamcrest-73556320dbc887f9a6bf31ed58666e099fe371de.tar.gz
Snap for 4393550 from 086d9d51dc7c71ce8713f95e27efe53cb3363a8e to pi-release
Change-Id: I03c991e18be66372feee09708d5d22490b99e785
Diffstat (limited to 'hamcrest-core/Android.mk')
-rw-r--r--hamcrest-core/Android.mk46
1 files changed, 0 insertions, 46 deletions
diff --git a/hamcrest-core/Android.mk b/hamcrest-core/Android.mk
deleted file mode 100644
index a6acc8f..0000000
--- a/hamcrest-core/Android.mk
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright (C) 2012 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)
-
-# build for the host JVM
-#-----------------------
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
-LOCAL_MODULE := hamcrest-host
-LOCAL_MODULE_TAGS := optional
-include $(BUILD_HOST_JAVA_LIBRARY)
-
-# build for the host dalvik
-# -------------------------
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
-LOCAL_MODULE := hamcrest-hostdex
-LOCAL_MODULE_TAGS := optional
-include $(BUILD_HOST_DALVIK_STATIC_JAVA_LIBRARY)
-
-#-------------------------------
-# build a target jar
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java)
-LOCAL_MODULE := hamcrest
-LOCAL_SDK_VERSION := 25
-LOCAL_MODULE_TAGS := optional
-include $(BUILD_STATIC_JAVA_LIBRARY)
-
-include $(call all-makefiles-under, $(LOCAL_PATH))