summaryrefslogtreecommitdiffstats
path: root/tools/Android.mk
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-02-12 12:25:56 -0800
committerBrian Carlstrom <bdc@google.com>2014-02-12 12:25:56 -0800
commit41dcb9f856a2051527cd595f8fe7d200066acba4 (patch)
tree2ced313e1f56d616d4a5a2317781aea86ea04b4c /tools/Android.mk
parent707c96a9d3b23182d1515a7e683c0885eee08a06 (diff)
downloadart-41dcb9f856a2051527cd595f8fe7d200066acba4.tar.gz
art-41dcb9f856a2051527cd595f8fe7d200066acba4.tar.bz2
art-41dcb9f856a2051527cd595f8fe7d200066acba4.zip
Revert "Add a script for running art standalone."
This reverts commit 1f5a90f28443886ebefcfbd531b8e41ece298cca.
Diffstat (limited to 'tools/Android.mk')
-rw-r--r--tools/Android.mk32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/Android.mk b/tools/Android.mk
deleted file mode 100644
index 6c385dcb4..000000000
--- a/tools/Android.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Copyright (C) 2014 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)
-
-ifeq ($(WITH_HOST_DALVIK),true)
-# Copy the art shell script to the host's bin directory
-include $(CLEAR_VARS)
-LOCAL_IS_HOST_MODULE := true
-LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_CLASS := EXECUTABLES
-LOCAL_MODULE := art
-include $(BUILD_SYSTEM)/base_rules.mk
-$(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/art $(ACP)
- @echo "Copy: $(PRIVATE_MODULE) ($@)"
- $(copy-file-to-new-target)
- $(hide) chmod 755 $@
-
-endif