Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 1 | # 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 Scott | 76f0d6d | 2015-06-02 08:13:27 -0700 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 16 | |
| 17 | include $(CLEAR_VARS) |
| 18 | |
Victor Chang | 06df256 | 2017-01-12 22:59:57 +0000 | [diff] [blame] | 19 | LOCAL_SRC_FILES := $(call all-java-files-under, src) \ |
| 20 | $(call all-Iaidl-files-under, src) |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 21 | |
Aaron Holden | 9259176 | 2016-12-07 18:52:10 -0800 | [diff] [blame] | 22 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 23 | compatibility-common-util-devicesidelib \ |
| 24 | android-support-test \ |
Victor Chang | 06df256 | 2017-01-12 22:59:57 +0000 | [diff] [blame] | 25 | ub-uiautomator \ |
Paul Duffin | 27c3c8d | 2017-12-05 18:36:55 +0000 | [diff] [blame] | 26 | mockito-target-minus-junit4 |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 27 | |
Jiyong Park | fe1e9a0 | 2018-01-18 16:50:54 +0900 | [diff] [blame^] | 28 | LOCAL_JAVA_LIBRARIES := \ |
| 29 | android.test.runner.stubs \ |
| 30 | android.test.base.stubs |
Aaron Holden | 0d69240 | 2017-01-26 12:02:51 -0800 | [diff] [blame] | 31 | |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 32 | LOCAL_MODULE_TAGS := optional |
| 33 | |
Stuart Scott | 76f0d6d | 2015-06-02 08:13:27 -0700 | [diff] [blame] | 34 | LOCAL_MODULE := compatibility-device-util |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 35 | |
Aaron Holden | d5bed72 | 2017-05-09 20:00:28 -0700 | [diff] [blame] | 36 | LOCAL_SDK_VERSION := current |
Stuart Scott | 3184e27 | 2014-03-28 10:48:19 -0700 | [diff] [blame] | 37 | |
| 38 | include $(BUILD_STATIC_JAVA_LIBRARY) |
Stuart Scott | abef7b6 | 2014-04-02 18:03:54 -0700 | [diff] [blame] | 39 | |
Stuart Scott | b9a5c84 | 2015-04-23 14:41:29 -0700 | [diff] [blame] | 40 | include $(call all-makefiles-under,$(LOCAL_PATH)) |