blob: 8424601a57ef5396bc6c9521c273f7c33072cd98 [file] [log] [blame]
Laurent Tuccb4c312012-12-11 15:45:09 -08001#
2# Copyright (C) 2010 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(call my-dir)
17
18# the library
19# ============================================================
20include $(CLEAR_VARS)
21
22LOCAL_MODULE:= com.android.location.provider
23LOCAL_MODULE_TAGS := optional
24
Dan Willemsena56e4df2018-01-29 16:39:27 -080025LOCAL_SRC_FILES := $(call all-subdir-java-files)
Laurent Tuccb4c312012-12-11 15:45:09 -080026
27include $(BUILD_JAVA_LIBRARY)
28
29
30# ==== com.google.location.xml lib def ========================
31include $(CLEAR_VARS)
32
33LOCAL_MODULE := com.android.location.provider.xml
34LOCAL_MODULE_TAGS := optional
35
36LOCAL_MODULE_CLASS := ETC
37
38# This will install the file in /system/etc/permissions
39#
40LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/permissions
41
42LOCAL_SRC_FILES := $(LOCAL_MODULE)
43
44include $(BUILD_PREBUILT)