summaryrefslogtreecommitdiffstats
path: root/location/lib/Android.mk
diff options
context:
space:
mode:
authorLaurent Tu <laurentt@google.com>2012-12-05 13:57:01 -0800
committerLaurent Tu <laurentt@google.com>2012-12-05 13:57:01 -0800
commit578081f9da7ddb056b9b98524c639acd9194ecb6 (patch)
treeac53b0960f43d8bd6a32f4caa0f6790b6ccf0ad5 /location/lib/Android.mk
parent39ec1ec187c3b27f2819aaf5a3a47819af56e44d (diff)
downloadframeworks_base-578081f9da7ddb056b9b98524c639acd9194ecb6.zip
frameworks_base-578081f9da7ddb056b9b98524c639acd9194ecb6.tar.gz
frameworks_base-578081f9da7ddb056b9b98524c639acd9194ecb6.tar.bz2
Move location provider lib to frameworks/ex - 1
Move location provider lib to frameworks/ex so it can be re-used in GmsCore. This is the frameworks/base part of the change (1). Change-Id: Ifc31a6809876e9c9afb6ed841b66cf06de7e8964
Diffstat (limited to 'location/lib/Android.mk')
-rw-r--r--location/lib/Android.mk46
1 files changed, 0 insertions, 46 deletions
diff --git a/location/lib/Android.mk b/location/lib/Android.mk
deleted file mode 100644
index 62f5677..0000000
--- a/location/lib/Android.mk
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# Copyright (C) 2010 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)
-
-# the library
-# ============================================================
-include $(CLEAR_VARS)
-
-LOCAL_MODULE:= com.android.location.provider
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_SRC_FILES := \
- $(call all-subdir-java-files) \
- $(call all-aidl-files-under, java)
-
-include $(BUILD_JAVA_LIBRARY)
-
-
-# ==== com.google.location.xml lib def ========================
-include $(CLEAR_VARS)
-
-LOCAL_MODULE := com.android.location.provider.xml
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_MODULE_CLASS := ETC
-
-# This will install the file in /system/etc/permissions
-#
-LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
-
-LOCAL_SRC_FILES := $(LOCAL_MODULE)
-
-include $(BUILD_PREBUILT)