blob: 0cc73cc632d6605133a50b19c8807045fa3b5bf6 [file] [log] [blame]
Keun young Park33b34142012-10-30 17:51:52 -07001# 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
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18# don't include this package in any target
Ying Wang6ff429a2014-04-17 18:07:04 -070019LOCAL_MODULE_TAGS := tests
Keun young Park33b34142012-10-30 17:51:52 -070020
21LOCAL_JAVA_LIBRARIES := android.test.runner
22
Stuart Scotta132af62013-11-07 10:30:32 -080023LOCAL_STATIC_JAVA_LIBRARIES := ctsdeviceutil ctstestrunner
24
25LOCAL_JNI_SHARED_LIBRARIES := libctscpu_jni
Keun young Park33b34142012-10-30 17:51:52 -070026
27LOCAL_SRC_FILES := $(call all-java-files-under, src)
28
Stuart Scotta132af62013-11-07 10:30:32 -080029LOCAL_PACKAGE_NAME := CtsDeviceSimpleCpu
Keun young Park33b34142012-10-30 17:51:52 -070030
31LOCAL_SDK_VERSION := 16
32
Keun young Parkd93d0d12013-01-10 14:11:35 -080033include $(BUILD_CTS_PACKAGE)
Keun young Park33b34142012-10-30 17:51:52 -070034
35include $(call all-makefiles-under,$(LOCAL_PATH))