Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 1 | # Copyright 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 | |
| 15 | # |
| 16 | # Builds a package and defines a rule to generate the associated test |
| 17 | # package XML needed by CTS. |
| 18 | # |
| 19 | # Replace "include $(BUILD_PACKAGE)" with "include $(BUILD_CTS_GTEST_PACKAGE)" |
| 20 | # |
| 21 | |
| 22 | # Disable by default so "m cts" will work in emulator builds |
| 23 | LOCAL_DEX_PREOPT := false |
Ying Wang | 9c5e00a | 2013-08-23 18:47:27 -0700 | [diff] [blame] | 24 | LOCAL_PROGUARD_ENABLED := disabled |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 25 | |
Stuart Scott | 0337dbf | 2015-02-04 10:37:07 -0800 | [diff] [blame] | 26 | include $(BUILD_CTS_SUPPORT_PACKAGE) |
Guang Zhu | 76be1e5 | 2015-05-18 20:19:01 -0700 | [diff] [blame] | 27 | include $(BUILD_CTS_MODULE_TEST_CONFIG) |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 28 | |
Stuart Scott | 0337dbf | 2015-02-04 10:37:07 -0800 | [diff] [blame] | 29 | cts_package_xml := $(CTS_TESTCASES_OUT)/$(LOCAL_PACKAGE_NAME).xml |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 30 | $(cts_package_xml): PRIVATE_PATH := $(LOCAL_PATH) |
| 31 | $(cts_package_xml): PRIVATE_TEST_PACKAGE := android.$(notdir $(LOCAL_PATH)) |
| 32 | $(cts_package_xml): PRIVATE_EXECUTABLE := $(LOCAL_MODULE) |
| 33 | $(cts_package_xml): PRIVATE_MANIFEST := $(LOCAL_PATH)/AndroidManifest.xml |
Stuart Scott | 544aec0 | 2015-03-11 16:41:43 -0700 | [diff] [blame] | 34 | $(cts_package_xml): PRIVATE_TEST_LIST := $(LOCAL_PATH)/$(LOCAL_MODULE)_list.txt |
| 35 | $(cts_package_xml): $(LOCAL_PATH)/$(LOCAL_MODULE)_list.txt |
| 36 | $(cts_package_xml): $(cts_support_apks) |
Guang Zhu | 76be1e5 | 2015-05-18 20:19:01 -0700 | [diff] [blame] | 37 | $(cts_package_xml): $(cts_module_test_config) |
Stuart Scott | 544aec0 | 2015-03-11 16:41:43 -0700 | [diff] [blame] | 38 | $(cts_package_xml): $(addprefix $(LOCAL_PATH)/,$(LOCAL_SRC_FILES)) $(CTS_NATIVE_TEST_SCANNER) $(CTS_XML_GENERATOR) |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 39 | $(hide) echo Generating test description for wrapped native package $(PRIVATE_EXECUTABLE) |
| 40 | $(hide) mkdir -p $(CTS_TESTCASES_OUT) |
Christopher Ferris | 25d54d4 | 2014-03-03 18:31:00 -0800 | [diff] [blame] | 41 | $(hide) cat $(PRIVATE_TEST_LIST) | \ |
| 42 | $(CTS_NATIVE_TEST_SCANNER) -t $(PRIVATE_TEST_PACKAGE) | \ |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 43 | $(CTS_XML_GENERATOR) -t wrappednative \ |
Christopher Ferris | 25d54d4 | 2014-03-03 18:31:00 -0800 | [diff] [blame] | 44 | -m $(PRIVATE_MANIFEST) \ |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 45 | -n $(PRIVATE_EXECUTABLE) \ |
| 46 | -p $(PRIVATE_TEST_PACKAGE) \ |
| 47 | -e $(CTS_EXPECTATIONS) \ |
Stuart Scott | 34c8fc8 | 2014-09-08 13:25:16 -0700 | [diff] [blame] | 48 | -b $(CTS_UNSUPPORTED_ABIS) \ |
Stuart Scott | ccdc00b | 2014-09-29 20:42:08 +0000 | [diff] [blame] | 49 | -a $(CTS_TARGET_ARCH) \ |
Thomas Tafertshofer | b5385a6 | 2012-08-15 15:40:45 -0700 | [diff] [blame] | 50 | -o $@ |
Ying Wang | 1aed9cd | 2015-01-28 16:59:57 -0800 | [diff] [blame] | 51 | |
| 52 | # Have the module name depend on the cts files; so the cts files get generated when you run mm/mmm/mma/mmma. |
Guang Zhu | 76be1e5 | 2015-05-18 20:19:01 -0700 | [diff] [blame] | 53 | $(my_register_name) : $(cts_package_xml) $(cts_module_test_config) |