184c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# Copyright (C) 2017 The Android Open Source Project
284c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller#
384c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# Licensed under the Apache License, Version 2.0 (the "License");
484c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# you may not use this file except in compliance with the License.
584c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# You may obtain a copy of the License at
684c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller#
784c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller#      http://www.apache.org/licenses/LICENSE-2.0
884c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller#
984c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# Unless required by applicable law or agreed to in writing, software
1084c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# distributed under the License is distributed on an "AS IS" BASIS,
1184c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1284c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# See the License for the specific language governing permissions and
1384c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# limitations under the License.
1484c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller
1584c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil FullerLOCAL_PATH:= $(call my-dir)
1684c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller
1784c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# A testing support library for testing time zone updates on real devices.
1884c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# OEMs can include this as a "_STATIC_" dependency and anything else needed to integrate with their
1984c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller# own test suite. At runtime the LOCAL_JAVA_LIBRARIES below (or a superset) must be present.
2084c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fuller
2184c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fullerinclude $(CLEAR_VARS)
2284c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil FullerLOCAL_MODULE_TAGS := optional
2384c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil FullerLOCAL_MODULE := time_zone_data_app_testing
2484c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil FullerLOCAL_SRC_FILES := $(call all-java-files-under, src)
2584c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil FullerLOCAL_JAVA_LIBRARIES := cts-tradefed tradefed compatibility-host-util
2684c56bd0fc1878ed95fbea0c13613ea4e46acd54Neil Fullerinclude $(BUILD_HOST_JAVA_LIBRARY)
27