Dan Shi | f740f61 | 2020-09-24 15:23:08 -0700 | [diff] [blame^] | 1 | # Copyright (C) 2020 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 | .PHONY: art-host-tests |
| 16 | |
| 17 | intermediates_dir := $(call intermediates-dir-for,PACKAGING,art-host-tests) |
| 18 | art_host_tests_zip := $(PRODUCT_OUT)/art-host-tests.zip |
| 19 | $(art_host_tests_zip) : $(COMPATIBILITY.art-host-tests.FILES) $(SOONG_ZIP) |
| 20 | echo $(sort $(COMPATIBILITY.art-host-tests.FILES)) | tr " " "\n" > $@.list |
| 21 | grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true |
| 22 | grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true |
| 23 | $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list |
| 24 | rm -f $@.list $@-host.list $@-target.list |
| 25 | |
| 26 | art-host-tests: $(art_host_tests_zip) |
| 27 | $(call dist-for-goals, art-host-tests, $(art_host_tests_zip)) |
| 28 | |
| 29 | tests: art-host-tests |