Adam Momtaz | 8213206 | 2012-09-24 18:06:29 -0700 | [diff] [blame] | 1 | #Copyright (C) 2012 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 | local_target_dir := $(TARGET_OUT_DATA)/local/tmp |
| 16 | LOCAL_PATH := $(call my-dir) |
| 17 | |
| 18 | include $(CLEAR_VARS) |
| 19 | |
| 20 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 21 | |
| 22 | LOCAL_MODULE_TAGS := optional |
| 23 | |
| 24 | LOCAL_MODULE := uiautomator.samples |
Bob Badour | f7cf305 | 2021-02-12 17:13:45 -0800 | [diff] [blame] | 25 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 |
| 26 | LOCAL_LICENSE_CONDITIONS := notice |
Adam Momtaz | 8213206 | 2012-09-24 18:06:29 -0700 | [diff] [blame] | 27 | |
Jiyong Park | 8c8cb53 | 2018-01-24 15:21:38 +0900 | [diff] [blame] | 28 | LOCAL_JAVA_LIBRARIES := uiautomator.core android.test.base.stubs |
Paul Duffin | 2430625 | 2017-01-17 14:49:41 +0000 | [diff] [blame] | 29 | LOCAL_STATIC_JAVA_LIBRARIES := junit |
Adam Momtaz | 8213206 | 2012-09-24 18:06:29 -0700 | [diff] [blame] | 30 | |
| 31 | LOCAL_MODULE_PATH := $(local_target_dir) |
| 32 | |
| 33 | include $(BUILD_JAVA_LIBRARY) |