blob: 6164c2e94b008e0593984080cf45e8321aa622de [file] [log] [blame]
Simran Basi9c295b42017-02-16 11:49:18 -08001# Copyright (C) 2017 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#
Dan Shi8f126312017-12-05 11:26:36 -08009# Unless required by applicable law or agreed to in writing, software
Simran Basi9c295b42017-02-16 11:49:18 -080010# 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-tests
Luca Farsi0b73dde2024-09-11 14:31:30 -070017.PHONY: device-tests-host-shared-libs
Simran Basic8f21f62017-03-14 15:40:33 -070018
19device-tests-zip := $(PRODUCT_OUT)/device-tests.zip
Dan Shi8f126312017-12-05 11:26:36 -080020# Create an artifact to include a list of test config files in device-tests.
21device-tests-list-zip := $(PRODUCT_OUT)/device-tests_list.zip
Dan Shi51b789e2019-05-22 15:15:20 -070022# Create an artifact to include all test config files in device-tests.
23device-tests-configs-zip := $(PRODUCT_OUT)/device-tests_configs.zip
Dan Shi6fe5bf02018-10-25 23:21:38 -070024my_host_shared_lib_for_device_tests := $(call copy-many-files,$(COMPATIBILITY.device-tests.HOST_SHARED_LIBRARY.FILES))
easoncylee01e5ec22020-03-20 14:53:11 +080025device_tests_host_shared_libs_zip := $(PRODUCT_OUT)/device-tests_host-shared-libs.zip
26
Luca Farsi0b73dde2024-09-11 14:31:30 -070027$(device-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-tests-list-zip) $(device-tests-configs-zip)
Dan Shi8f126312017-12-05 11:26:36 -080028$(device-tests-zip) : PRIVATE_device_tests_list := $(PRODUCT_OUT)/device-tests_list
Dan Shi6fe5bf02018-10-25 23:21:38 -070029$(device-tests-zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests)
Ronald Braunsteinb86f9ef2024-06-02 07:10:47 -070030$(device-tests-zip) : $(COMPATIBILITY.device-tests.FILES) $(COMPATIBILITY.device-tests.SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES) $(my_host_shared_lib_for_device_tests) $(SOONG_ZIP)
Ronald Braunsteinb86f9ef2024-06-02 07:10:47 -070031 echo $(sort $(COMPATIBILITY.device-tests.FILES) $(COMPATIBILITY.device-tests.SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES)) | tr " " "\n" > $@.list
Simran Basic8f21f62017-03-14 15:40:33 -070032 grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true
Dan Shi51b789e2019-05-22 15:15:20 -070033 grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true
Dan Shi6fe5bf02018-10-25 23:21:38 -070034 $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \
35 echo $$shared_lib >> $@-host.list; \
36 done
Simran Basic8f21f62017-03-14 15:40:33 -070037 grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true
Dan Shi51b789e2019-05-22 15:15:20 -070038 grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true
Zhenhuang Wangd1dfcda2023-02-17 17:48:24 +080039 $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list -sha256
Dan Shi51b789e2019-05-22 15:15:20 -070040 $(hide) $(SOONG_ZIP) -d -o $(device-tests-configs-zip) \
41 -P host -C $(HOST_OUT) -l $@-host-test-configs.list \
42 -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list
Dan Shi8f126312017-12-05 11:26:36 -080043 rm -f $(PRIVATE_device_tests_list)
Dan Shi51b789e2019-05-22 15:15:20 -070044 $(hide) grep -e .*\\.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_device_tests_list)
45 $(hide) grep -e .*\\.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_device_tests_list)
Dan Shi8f126312017-12-05 11:26:36 -080046 $(hide) $(SOONG_ZIP) -d -o $(device-tests-list-zip) -C $(dir $@) -f $(PRIVATE_device_tests_list)
Dan Shi51b789e2019-05-22 15:15:20 -070047 rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \
Luca Farsi0b73dde2024-09-11 14:31:30 -070048 $(PRIVATE_device_tests_list)
49
50$(device_tests_host_shared_libs_zip) : PRIVATE_device_host_shared_libs_zip := $(device_tests_host_shared_libs_zip)
51$(device_tests_host_shared_libs_zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests)
52$(device_tests_host_shared_libs_zip) : $(my_host_shared_lib_for_device_tests) $(SOONG_ZIP)
53 rm -f $@-shared-libs.list
54 $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \
55 echo $$shared_lib >> $@-shared-libs.list; \
56 done
57 grep $(HOST_OUT_TESTCASES) $@-shared-libs.list > $@-host-shared-libs.list || true
58 $(SOONG_ZIP) -d -o $(PRIVATE_device_host_shared_libs_zip) \
59 -P host -C $(HOST_OUT) -l $@-host-shared-libs.list
Simran Basic8f21f62017-03-14 15:40:33 -070060
61device-tests: $(device-tests-zip)
Luca Farsi0b73dde2024-09-11 14:31:30 -070062device-tests-host-shared-libs: $(device_tests_host_shared_libs_zip)
63
easoncylee01e5ec22020-03-20 14:53:11 +080064$(call dist-for-goals, device-tests, $(device-tests-zip) $(device-tests-list-zip) $(device-tests-configs-zip) $(device_tests_host_shared_libs_zip))
Luca Farsi0b73dde2024-09-11 14:31:30 -070065$(call dist-for-goals, device-tests-host-shared-libs, $(device_tests_host_shared_libs_zip))
Simran Basi65850da2017-04-05 20:39:18 +000066
Bob Badour3a0f0c12022-04-05 10:43:45 -070067$(call declare-1p-container,$(device-tests-zip),)
68$(call declare-container-license-deps,$(device-tests-zip),$(COMPATIBILITY.device-tests.FILES) $(my_host_shared_lib_for_device_tests),$(PRODUCT_OUT)/:/)
69
Simran Basi65850da2017-04-05 20:39:18 +000070tests: device-tests