blob: 593db19270031fcacd9525481880473a0a19d3e1 [file] [log] [blame]
Neil Fullerf68ad8c2017-06-05 13:54:44 +01001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15
16LOCAL_PATH:= $(call my-dir)
17
Neil Fuller84c56bd2017-07-07 18:19:39 +010018# A static library containing all the source needed by a Time Zone Data app.
Neil Fullerf68ad8c2017-06-05 13:54:44 +010019include $(CLEAR_VARS)
20LOCAL_MODULE_TAGS := optional
21LOCAL_MODULE := time_zone_distro_provider
22LOCAL_MODULE_TAGS := optional
23LOCAL_SRC_FILES := $(call all-java-files-under, src/main)
24LOCAL_PROGUARD_FLAG_FILES := $(LOCAL_PATH)/proguard.cfg
Filip Pavlis1bc4d5c2018-03-29 01:45:09 +010025LOCAL_STATIC_JAVA_LIBRARIES := time_zone_distro_unbundled androidx.annotation_annotation
Neil Fuller24882042017-07-28 14:56:36 +010026LOCAL_SDK_VERSION := system_current
Neil Fullerf68ad8c2017-06-05 13:54:44 +010027include $(BUILD_STATIC_JAVA_LIBRARY)
28
Neil Fullerf68ad8c2017-06-05 13:54:44 +010029include $(call all-makefiles-under,$(LOCAL_PATH))