The Android Open Source Project | f805710 | 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 | include $(CLEAR_VARS) |
| 17 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 18 | LOCAL_SRC_FILES := $(call all-subdir-java-files) |
| 19 | |
Brett Chabot | 5a54633 | 2009-08-28 12:22:23 -0700 | [diff] [blame] | 20 | # don't include this package in any target |
Brett Chabot | f9e03e1 | 2009-08-13 20:55:28 -0700 | [diff] [blame] | 21 | LOCAL_MODULE_TAGS := optional |
Brett Chabot | 5a54633 | 2009-08-28 12:22:23 -0700 | [diff] [blame] | 22 | # and when built explicitly put it in the data partition |
| 23 | LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS) |
Brian Carlstrom | cb71127 | 2012-06-16 23:32:47 -0700 | [diff] [blame] | 24 | # and because it is in data, do not strip classes.dex |
| 25 | LOCAL_DEX_PREOPT := false |
Brett Chabot | f9e03e1 | 2009-08-13 20:55:28 -0700 | [diff] [blame] | 26 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 27 | LOCAL_JAVA_LIBRARIES := android.test.runner |
| 28 | |
Madan Ankapura | 56c756f | 2013-05-10 10:10:27 -0700 | [diff] [blame] | 29 | LOCAL_SDK_VERSION := 17 |
Brett Chabot | 62a17ce | 2009-11-12 13:35:13 -0800 | [diff] [blame] | 30 | |
| 31 | LOCAL_PACKAGE_NAME := TestDeviceSetup |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 32 | |
| 33 | include $(BUILD_PACKAGE) |
| 34 | |
Brett Chabot | 2f903ad | 2011-02-02 18:22:18 -0800 | [diff] [blame] | 35 | # ====================================================== |
| 36 | # also build a static host library for the device info constants |
| 37 | include $(CLEAR_VARS) |
| 38 | |
| 39 | LOCAL_SRC_FILES := src/android/tests/getinfo/DeviceInfoConstants.java |
| 40 | |
| 41 | LOCAL_MODULE_TAGS := optional |
| 42 | |
| 43 | LOCAL_MODULE := ctsdeviceinfolib |
| 44 | |
| 45 | include $(BUILD_HOST_JAVA_LIBRARY) |