• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
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
22CTS_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
24
25$(CTS_AUDIO_QUALITY_ZIP): cts_audio_quality_test cts_audio_quality \
26  CtsAudioClient $(CTS_AUDIO_TOP)/test_description
27	$(hide) mkdir -p $(CTS_AUDIO_INSTALL_DIR)
28	$(hide) mkdir -p $(CTS_AUDIO_INSTALL_DIR)/client
29	$(hide) $(ACP) -fp $(PRODUCT_OUT)/data/app/CtsAudioClient.apk \
30        $(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)
34	$(hide) echo "Package cts_audio: $@"
35	$(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/\*
37
38# target to build only this package
39.PHONY: cts_audio_quality_package
40cts_audio_quality_package: $(CTS_AUDIO_QUALITY_ZIP)
41
42cts: $(CTS_AUDIO_QUALITY_ZIP)
43
44ifneq ($(filter cts, $(MAKECMDGOALS)),)
45$(call dist-for-goals, cts, $(CTS_AUDIO_QUALITY_ZIP))
46endif # cts
47
48include $(call all-subdir-makefiles)
49
50endif # linux
51