blob: 7219fc483f28106eeb9f7902cba372368ebfe4f8 [file] [log] [blame]
The Android Open Source Project8aa1b8f2009-03-15 16:47:16 -07001# 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
15LOCAL_PATH:= $(call my-dir)
16
17include $(CLEAR_VARS)
18
Brett Chabot15051422009-08-28 12:22:23 -070019# don't include this package in any target
Brett Chabotf4ffdb92009-08-13 20:55:28 -070020LOCAL_MODULE_TAGS := optional
Brett Chabot15051422009-08-28 12:22:23 -070021# and when built explicitly put it in the data partition
22LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
The Android Open Source Project8aa1b8f2009-03-15 16:47:16 -070023
Wink Saville775417b2013-01-28 20:00:57 -080024LOCAL_JAVA_LIBRARIES := android.test.runner voip-common
The Android Open Source Project8aa1b8f2009-03-15 16:47:16 -070025
Robert Greenwalt9ac09492013-02-05 11:02:49 -080026LOCAL_JNI_SHARED_LIBRARIES := libnativedns_jni
27
Chia-chi Yeh42315152012-02-28 14:05:12 -080028# include CtsTestServer as a temporary hack to free net.cts from cts.stub.
Brian Muramatsu248128f2012-03-05 18:46:33 -080029LOCAL_SRC_FILES := $(call all-java-files-under, src)
The Android Open Source Project8aa1b8f2009-03-15 16:47:16 -070030
31LOCAL_PACKAGE_NAME := CtsNetTestCases
32
Stuart Scott7fd24cb2013-11-07 10:30:32 -080033LOCAL_STATIC_JAVA_LIBRARIES := ctstestserver ctsdeviceutil ctstestrunner
Brian Muramatsu248128f2012-03-05 18:46:33 -080034
Brett Chabotdcccc542009-09-11 15:26:23 -070035# uncomment when dalvik.annotation.Test* are removed or part of SDK
36#LOCAL_SDK_VERSION := current
The Android Open Source Project3cae4df2009-03-18 17:39:42 -070037
Brian Muramatsu59be1692011-12-28 15:46:57 -080038include $(BUILD_CTS_PACKAGE)
Robert Greenwalt9ac09492013-02-05 11:02:49 -080039
40include $(call all-makefiles-under,$(LOCAL_PATH))