blob: 21d8fb85b6c71f59cbddae752e082f7396810058 [file] [log] [blame]
Keun young Park5eba08f2012-03-26 18:31:29 -07001#
2# Copyright (C) 2012 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# build only for linux
18ifeq ($(HOST_OS),linux)
19
20CTS_AUDIO_TOP:= $(call my-dir)
21
Keun young Park51a36fa2012-07-27 09:52:08 -070022CTS_AUDIO_INSTALL_DIR := $(HOST_OUT)/cts-audio-quality/android-cts-audio-quality
23CTS_AUDIO_QUALITY_ZIP := $(HOST_OUT)/cts-audio-quality/android-cts-audio-quality.zip
Keun young Park5eba08f2012-03-26 18:31:29 -070024
Keun young Park51a36fa2012-07-27 09:52:08 -070025$(CTS_AUDIO_QUALITY_ZIP): cts_audio_quality_test cts_audio_quality \
Keun young Parkf4426362012-07-26 13:06:04 -070026 CtsAudioClient $(CTS_AUDIO_TOP)/test_description
Keun young Park5eba08f2012-03-26 18:31:29 -070027 $(hide) mkdir -p $(CTS_AUDIO_INSTALL_DIR)
28 $(hide) mkdir -p $(CTS_AUDIO_INSTALL_DIR)/client
Keun young Park1ca08662012-07-26 18:25:34 -070029 $(hide) $(ACP) -fp $(PRODUCT_OUT)/data/app/CtsAudioClient.apk \
Keun young Park5eba08f2012-03-26 18:31:29 -070030 $(CTS_AUDIO_INSTALL_DIR)/client
31 $(hide) $(ACP) -fp $(HOST_OUT)/bin/cts_audio_quality_test $(CTS_AUDIO_INSTALL_DIR)
32 $(hide) $(ACP) -fp $(HOST_OUT)/bin/cts_audio_quality $(CTS_AUDIO_INSTALL_DIR)
33 $(hide) $(ACP) -fr $(CTS_AUDIO_TOP)/test_description $(CTS_AUDIO_INSTALL_DIR)
Keun young Parkf4426362012-07-26 13:06:04 -070034 $(hide) echo "Package cts_audio: $@"
Keun young Park51a36fa2012-07-27 09:52:08 -070035 $(hide) cd $(HOST_OUT)/cts-audio-quality && \
36 zip -rq android-cts-audio-quality.zip android-cts-audio-quality -x android-cts-audio-quality/reports/\*
Keun young Parkf4426362012-07-26 13:06:04 -070037
Keun young Park69adcd72012-09-25 15:23:16 -070038# target to build only this package
39.PHONY: cts_audio_quality_package
40cts_audio_quality_package: $(CTS_AUDIO_QUALITY_ZIP)
41
Keun young Park51a36fa2012-07-27 09:52:08 -070042cts: $(CTS_AUDIO_QUALITY_ZIP)
Keun young Park69adcd72012-09-25 15:23:16 -070043
Keun young Parkf4426362012-07-26 13:06:04 -070044ifneq ($(filter cts, $(MAKECMDGOALS)),)
Keun young Park51a36fa2012-07-27 09:52:08 -070045$(call dist-for-goals, cts, $(CTS_AUDIO_QUALITY_ZIP))
Keun young Parkf4426362012-07-26 13:06:04 -070046endif # cts
Keun young Park5eba08f2012-03-26 18:31:29 -070047
48include $(call all-subdir-makefiles)
49
50endif # linux