blob: bc54871e544ae64a12f6498387f192a7e6c130ea [file] [log] [blame]
Stuart Scott3184e272014-03-28 10:48:19 -07001# Copyright (C) 2014 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
Stuart Scott76f0d6d2015-06-02 08:13:27 -070015LOCAL_PATH := $(call my-dir)
Stuart Scott3184e272014-03-28 10:48:19 -070016
17include $(CLEAR_VARS)
18
Victor Chang06df2562017-01-12 22:59:57 +000019LOCAL_SRC_FILES := $(call all-java-files-under, src) \
20 $(call all-Iaidl-files-under, src)
Stuart Scott3184e272014-03-28 10:48:19 -070021
Aaron Holden92591762016-12-07 18:52:10 -080022LOCAL_STATIC_JAVA_LIBRARIES := \
23 compatibility-common-util-devicesidelib \
24 android-support-test \
Victor Chang06df2562017-01-12 22:59:57 +000025 ub-uiautomator \
Paul Duffin27c3c8d2017-12-05 18:36:55 +000026 mockito-target-minus-junit4
Stuart Scott3184e272014-03-28 10:48:19 -070027
Jiyong Parkfe1e9a02018-01-18 16:50:54 +090028LOCAL_JAVA_LIBRARIES := \
29 android.test.runner.stubs \
30 android.test.base.stubs
Aaron Holden0d692402017-01-26 12:02:51 -080031
Stuart Scott3184e272014-03-28 10:48:19 -070032LOCAL_MODULE_TAGS := optional
33
Stuart Scott76f0d6d2015-06-02 08:13:27 -070034LOCAL_MODULE := compatibility-device-util
Stuart Scott3184e272014-03-28 10:48:19 -070035
Aaron Holdend5bed722017-05-09 20:00:28 -070036LOCAL_SDK_VERSION := current
Stuart Scott3184e272014-03-28 10:48:19 -070037
38include $(BUILD_STATIC_JAVA_LIBRARY)
Stuart Scottabef7b62014-04-02 18:03:54 -070039
Stuart Scottb9a5c842015-04-23 14:41:29 -070040include $(call all-makefiles-under,$(LOCAL_PATH))