Agatha Man | 783d631 | 2015-06-19 14:29:33 -0700 | [diff] [blame] | 1 | # Copyright (C) 2015 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 | |
| 19 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 20 | |
Jesse Hall | 5ad0939 | 2016-06-08 17:05:44 -0700 | [diff] [blame^] | 21 | LOCAL_JNI_SHARED_LIBRARIES := libctsdeviceinfo |
| 22 | |
Agatha Man | f2ea3fb | 2015-10-21 19:30:36 -0700 | [diff] [blame] | 23 | DEVICE_INFO_MIN_SDK := 23 |
| 24 | DEVICE_INFO_TARGET_SDK := 23 |
| 25 | |
Agatha Man | 25b07aa | 2015-07-14 13:47:47 -0700 | [diff] [blame] | 26 | DEVICE_INFO_PERMISSIONS := |
| 27 | |
Nicholas Sauer | c7d0ede | 2015-12-08 11:56:30 -0800 | [diff] [blame] | 28 | DEVICE_INFO_ACTIVITIES := \ |
Yin-Chia Yeh | 292d76c | 2016-04-01 16:06:51 -0700 | [diff] [blame] | 29 | com.android.compatibility.common.deviceinfo.GlesStubActivity \ |
Agatha Man | b52e0b8 | 2016-04-20 12:02:49 -0700 | [diff] [blame] | 30 | com.android.cts.deviceinfo.CameraDeviceInfo \ |
Jesse Hall | 5ad0939 | 2016-06-08 17:05:44 -0700 | [diff] [blame^] | 31 | com.android.cts.deviceinfo.SensorDeviceInfo \ |
| 32 | com.android.cts.deviceinfo.VulkanDeviceInfo |
Agatha Man | 783d631 | 2015-06-19 14:29:33 -0700 | [diff] [blame] | 33 | |
| 34 | LOCAL_PACKAGE_NAME := CtsDeviceInfo |
| 35 | |
Stuart Scott | 2ff78ae | 2016-02-18 19:25:52 -0800 | [diff] [blame] | 36 | # Tag this module as a cts test artifact |
| 37 | LOCAL_COMPATIBILITY_SUITE := cts |
Stuart Scott | bd44d46 | 2015-08-19 10:01:23 -0700 | [diff] [blame] | 38 | |
Agatha Man | 783d631 | 2015-06-19 14:29:33 -0700 | [diff] [blame] | 39 | include $(BUILD_CTS_DEVICE_INFO_PACKAGE) |
Jesse Hall | 5ad0939 | 2016-06-08 17:05:44 -0700 | [diff] [blame^] | 40 | |
| 41 | include $(call all-makefiles-under,$(LOCAL_PATH)) |