The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | # Copyright (C) 2008 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_PATH:= $(call my-dir) |
| 16 | |
| 17 | include $(CLEAR_VARS) |
| 18 | |
Brett Chabot | 1505142 | 2009-08-28 12:22:23 -0700 | [diff] [blame] | 19 | # don't include this package in any target |
Brett Chabot | f4ffdb9 | 2009-08-13 20:55:28 -0700 | [diff] [blame] | 20 | LOCAL_MODULE_TAGS := optional |
Brett Chabot | 1505142 | 2009-08-28 12:22:23 -0700 | [diff] [blame] | 21 | # and when built explicitly put it in the data partition |
| 22 | LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS) |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 23 | |
Unsuk Jung | 94995b1 | 2014-10-09 00:59:51 -0700 | [diff] [blame] | 24 | # Include both the 32 and 64 bit versions |
| 25 | LOCAL_MULTILIB := both |
| 26 | |
Narayan Kamath | 505728b | 2014-12-12 10:55:51 +0000 | [diff] [blame] | 27 | LOCAL_JAVA_LIBRARIES := voip-common conscrypt org.apache.http.legacy |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 28 | |
Erik Kline | 1c542da | 2015-05-14 17:20:39 +0900 | [diff] [blame] | 29 | LOCAL_JNI_SHARED_LIBRARIES := libcts_jni libnativedns_jni \ |
Dimitry Ivanov | 04d19df | 2016-01-12 11:49:57 -0800 | [diff] [blame] | 30 | libnativemultinetwork_jni libnativehelper_compat_libc++ |
Robert Greenwalt | 9ac0949 | 2013-02-05 11:02:49 -0800 | [diff] [blame] | 31 | |
Chia-chi Yeh | 4231515 | 2012-02-28 14:05:12 -0800 | [diff] [blame] | 32 | # include CtsTestServer as a temporary hack to free net.cts from cts.stub. |
Brian Muramatsu | 248128f | 2012-03-05 18:46:33 -0800 | [diff] [blame] | 33 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
The Android Open Source Project | 8aa1b8f | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 34 | |
| 35 | LOCAL_PACKAGE_NAME := CtsNetTestCases |
| 36 | |
Paul Duffin | 038b6a4 | 2017-01-10 12:08:43 +0000 | [diff] [blame] | 37 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 38 | core-tests-support \ |
| 39 | compatibility-device-util \ |
| 40 | ctstestrunner \ |
| 41 | ctstestserver \ |
| 42 | mockwebserver \ |
| 43 | junit \ |
| 44 | legacy-android-test |
Brian Muramatsu | 248128f | 2012-03-05 18:46:33 -0800 | [diff] [blame] | 45 | |
Brett Chabot | cf8d741 | 2014-01-09 14:32:20 -0800 | [diff] [blame] | 46 | # uncomment when b/13249961 is fixed |
Brett Chabot | dcccc54 | 2009-09-11 15:26:23 -0700 | [diff] [blame] | 47 | #LOCAL_SDK_VERSION := current |
The Android Open Source Project | 3cae4df | 2009-03-18 17:39:42 -0700 | [diff] [blame] | 48 | |
Stuart Scott | a9e563c | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 49 | # Tag this module as a cts test artifact |
nickrose | 02fa5a5 | 2017-07-05 12:38:06 -0700 | [diff] [blame^] | 50 | LOCAL_COMPATIBILITY_SUITE := cts vts general-tests |
Nash Lincoln | de95223 | 2015-09-17 13:46:25 -0700 | [diff] [blame] | 51 | |
Brian Muramatsu | 59be169 | 2011-12-28 15:46:57 -0800 | [diff] [blame] | 52 | include $(BUILD_CTS_PACKAGE) |
Robert Greenwalt | 9ac0949 | 2013-02-05 11:02:49 -0800 | [diff] [blame] | 53 | |
| 54 | include $(call all-makefiles-under,$(LOCAL_PATH)) |