Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2014 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | LOCAL_PATH := $(call my-dir) |
| 18 | |
| 19 | include $(CLEAR_VARS) |
| 20 | |
| 21 | LOCAL_MODULE_TAGS := tests |
| 22 | LOCAL_SDK_VERSION := current |
Aaron Holden | 37698cb | 2016-12-07 18:52:10 -0800 | [diff] [blame] | 23 | LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util ctstestrunner ub-uiautomator \ |
Lorenzo Colitti | cbcfb98 | 2016-04-15 16:27:49 +0900 | [diff] [blame] | 24 | CtsHostsideNetworkTestsAidl |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 25 | |
Paul Duffin | 35ff106 | 2017-12-05 18:36:55 +0000 | [diff] [blame] | 26 | LOCAL_JAVA_LIBRARIES := android.test.runner.stubs |
| 27 | |
Lorenzo Colitti | 5d5cd1f | 2014-11-16 20:09:24 -0800 | [diff] [blame] | 28 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 29 | |
| 30 | LOCAL_PACKAGE_NAME := CtsHostsideNetworkTestsApp |
| 31 | |
| 32 | LOCAL_PROGUARD_ENABLED := disabled |
| 33 | LOCAL_DEX_PREOPT := false |
| 34 | |
Stuart Scott | a9e563c | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 35 | # Tag this module as a cts test artifact |
nickrose | 02fa5a5 | 2017-07-05 12:38:06 -0700 | [diff] [blame] | 36 | LOCAL_COMPATIBILITY_SUITE := cts vts general-tests |
Nash Lincoln | 0784f04 | 2015-11-06 17:05:17 -0800 | [diff] [blame] | 37 | |
Stuart Scott | 1c67736 | 2015-02-04 10:37:07 -0800 | [diff] [blame] | 38 | include $(BUILD_CTS_SUPPORT_PACKAGE) |