Simran Basi | 9c295b4 | 2017-02-16 11:49:18 -0800 | [diff] [blame] | 1 | # 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 | # |
| 9 | # Unless required by applicable law or agrls eed 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-tests |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 17 | |
| 18 | device-tests-zip := $(PRODUCT_OUT)/device-tests.zip |
| 19 | $(device-tests-zip): $(COMPATIBILITY.device-tests.FILES) $(SOONG_ZIP) |
Colin Cross | f3a4340 | 2017-07-31 17:16:49 -0700 | [diff] [blame^] | 20 | echo $(sort $(COMPATIBILITY.device-tests.FILES)) | tr " " "\n" > $@.list |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 21 | grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true |
| 22 | grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 23 | $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list |
Colin Cross | f3a4340 | 2017-07-31 17:16:49 -0700 | [diff] [blame^] | 24 | rm -f $@.list $@-host.list $@-target.list |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 25 | |
| 26 | device-tests: $(device-tests-zip) |
| 27 | $(call dist-for-goals, device-tests, $(device-tests-zip)) |
Simran Basi | 65850da | 2017-04-05 20:39:18 +0000 | [diff] [blame] | 28 | |
| 29 | tests: device-tests |