Julien Desprez | e28650f | 2024-05-20 12:35:27 -0700 | [diff] [blame^] | 1 | # Copyright (C) 2024 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 | .PHONY: device-platinum-tests |
| 17 | |
| 18 | device-platinum-tests-zip := $(PRODUCT_OUT)/device-platinum-tests.zip |
| 19 | # Create an artifact to include a list of test config files in device-platinum-tests. |
| 20 | device-platinum-tests-list-zip := $(PRODUCT_OUT)/device-platinum-tests_list.zip |
| 21 | # Create an artifact to include all test config files in device-platinum-tests. |
| 22 | device-platinum-tests-configs-zip := $(PRODUCT_OUT)/device-platinum-tests_configs.zip |
| 23 | my_host_shared_lib_for_device_platinum_tests := $(call copy-many-files,$(COMPATIBILITY.device-platinum-tests.HOST_SHARED_LIBRARY.FILES)) |
| 24 | device_platinum_tests_host_shared_libs_zip := $(PRODUCT_OUT)/device-platinum-tests_host-shared-libs.zip |
| 25 | |
| 26 | $(device-platinum-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-platinum-tests-list-zip) $(device-platinum-tests-configs-zip) $(device_platinum_tests_host_shared_libs_zip) |
| 27 | $(device-platinum-tests-zip) : PRIVATE_device_platinum_tests_list := $(PRODUCT_OUT)/device-platinum-tests_list |
| 28 | $(device-platinum-tests-zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_platinum_tests) |
| 29 | $(device-platinum-tests-zip) : PRIVATE_device_host_shared_libs_zip := $(device_platinum_tests_host_shared_libs_zip) |
| 30 | $(device-platinum-tests-zip) : $(COMPATIBILITY.device-platinum-tests.FILES) $(my_host_shared_lib_for_device_platinum_tests) $(SOONG_ZIP) |
| 31 | rm -f $@-shared-libs.list |
| 32 | echo $(sort $(COMPATIBILITY.device-platinum-tests.FILES)) | tr " " "\n" > $@.list |
| 33 | grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true |
| 34 | grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true |
| 35 | $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \ |
| 36 | echo $$shared_lib >> $@-host.list; \ |
| 37 | echo $$shared_lib >> $@-shared-libs.list; \ |
| 38 | done |
| 39 | grep $(HOST_OUT_TESTCASES) $@-shared-libs.list > $@-host-shared-libs.list || true |
| 40 | grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true |
| 41 | grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true |
| 42 | $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list -sha256 |
| 43 | $(hide) $(SOONG_ZIP) -d -o $(device-platinum-tests-configs-zip) \ |
| 44 | -P host -C $(HOST_OUT) -l $@-host-test-configs.list \ |
| 45 | -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list |
| 46 | $(SOONG_ZIP) -d -o $(PRIVATE_device_host_shared_libs_zip) \ |
| 47 | -P host -C $(HOST_OUT) -l $@-host-shared-libs.list |
| 48 | rm -f $(PRIVATE_device_platinum_tests_list) |
| 49 | $(hide) grep -e .*\\.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_device_platinum_tests_list) |
| 50 | $(hide) grep -e .*\\.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_device_platinum_tests_list) |
| 51 | $(hide) $(SOONG_ZIP) -d -o $(device-platinum-tests-list-zip) -C $(dir $@) -f $(PRIVATE_device_platinum_tests_list) |
| 52 | rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \ |
| 53 | $@-shared-libs.list $@-host-shared-libs.list $(PRIVATE_device_platinum_tests_list) |
| 54 | |
| 55 | device-platinum-tests: $(device-platinum-tests-zip) |
| 56 | $(call dist-for-goals, device-platinum-tests, $(device-platinum-tests-zip) $(device-platinum-tests-list-zip) $(device-platinum-tests-configs-zip) $(device_platinum_tests_host_shared_libs_zip)) |
| 57 | |
| 58 | $(call declare-1p-container,$(device-platinum-tests-zip),) |
| 59 | $(call declare-container-license-deps,$(device-platinum-tests-zip),$(COMPATIBILITY.device-platinum-tests.FILES) $(my_host_shared_lib_for_device_platinum_tests),$(PRODUCT_OUT)/:/) |
| 60 | |
| 61 | tests: device-platinum-tests |
| 62 | |
| 63 | # Reset temp vars |
| 64 | device-platinum-tests-zip := |
| 65 | device-platinum-tests-list-zip := |
| 66 | device-platinum-tests-configs-zip := |
| 67 | my_host_shared_lib_for_device_platinum_tests := |
| 68 | device_platinum_tests_host_shared_libs_zip := |