blob: faef02fc060e18a80ecd84e7e71721f2ea4023fd [file] [log] [blame]
Brett Chabotf72f44c2010-01-27 11:09:46 -08001# Copyright (C) 2010 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
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18
19# Only compile source java files in this lib.
20LOCAL_SRC_FILES := $(call all-java-files-under, src)
21
Brett Chabote278a5b2010-06-01 16:20:14 -070022LOCAL_JAVA_RESOURCE_DIRS := res
23
Guang Zhu040a43a2012-01-25 14:38:16 -080024LOCAL_JAVACFLAGS += -g -Xlint
Guang Zhuc5637f72011-07-24 13:15:24 -070025
Brett Chabot0aebe552010-09-13 14:26:46 -070026LOCAL_MODULE := tradefed
Brett Chabotf72f44c2010-01-27 11:09:46 -080027
Brett Chabot36d4f872010-09-15 18:28:27 -070028LOCAL_MODULE_TAGS := optional
Omari Stephens201dc522011-11-09 16:46:40 -080029LOCAL_STATIC_JAVA_LIBRARIES := junit kxml2-2.3.0 guavalib jline-1.0
Brett Chabot0aebe552010-09-13 14:26:46 -070030LOCAL_JAVA_LIBRARIES := ddmlib-prebuilt
Brett Chabotf72f44c2010-01-27 11:09:46 -080031
32include $(BUILD_HOST_JAVA_LIBRARY)
33
Brett Chabot4bd67d52011-02-07 11:54:37 -080034# makefile rules to copy jars to HOST_OUT/tradefed
35# so tradefed.sh can automatically add to classpath
36DEST_JAR := $(HOST_OUT)/tradefed/$(LOCAL_MODULE).jar
37$(DEST_JAR): $(LOCAL_BUILT_MODULE)
38 $(copy-file-to-new-target)
39
40# this dependency ensure the above rule will be executed if jar is built
41$(LOCAL_INSTALLED_MODULE) : $(DEST_JAR)
42
Omari Stephens6aeef7c2011-10-19 17:14:47 -070043#######################################################
44include $(CLEAR_VARS)
45
46# Create a simple alias to build all the TF-related targets
47# Note that this is incompatible with `make dist`. If you want to make
48# the distribution, you must run `tapas` with the individual target names.
49.PHONY: tradefed-all
Omari Stephenscb76e3a2012-03-19 20:12:41 -070050tradefed-all: tradefed tradefed-tests tf-prod-tests tf-prod-metatests
Omari Stephens6aeef7c2011-10-19 17:14:47 -070051
Brett Chabot4bd67d52011-02-07 11:54:37 -080052# ====================================
53include $(CLEAR_VARS)
54# copy tradefed.sh script to host dir
55
56LOCAL_MODULE_TAGS := optional
57
58LOCAL_PREBUILT_EXECUTABLES := tradefed.sh
59include $(BUILD_HOST_PREBUILT)
60
Brett Chabotf72f44c2010-01-27 11:09:46 -080061# Build all sub-directories
62include $(call all-makefiles-under,$(LOCAL_PATH))
Omari Stephens64043d82012-01-27 18:14:56 -080063
64########################################################
65# Zip up the built files and dist it as google-tradefed.zip
66ifneq (,$(filter tradefed, $(TARGET_BUILD_APPS)))
67
68tradefed_dist_host_jars := tradefed tradefed-tests ddmlib-prebuilt tf-prod-tests
69tradefed_dist_host_jar_files := $(foreach m, $(tradefed_dist_host_jars), $(HOST_OUT_JAVA_LIBRARIES)/$(m).jar)
70
71tradefed_dist_host_exes := tradefed.sh
72tradefed_dist_host_exe_files := $(foreach m, $(tradefed_dist_host_exes), $(BUILD_OUT_EXECUTABLES)/$(m))
73
74tradefed_dist_test_apks := TradeFedUiTestApp TradeFedTestApp
75tradefed_dist_test_apk_files := $(foreach m, $(tradefed_dist_test_apks), $(TARGET_OUT_DATA_APPS)/$(m).apk)
76
77tradefed_dist_files := \
78 $(tradefed_dist_host_jar_files) \
79 $(tradefed_dist_test_apk_files) \
80 $(tradefed_dist_host_exe_files)
81
82tradefed_dist_intermediates := $(call intermediates-dir-for,PACKAGING,tradefed_dist,HOST,COMMON)
83tradefed_dist_zip := $(tradefed_dist_intermediates)/tradefed.zip
84$(tradefed_dist_zip) : $(tradefed_dist_files)
85 @echo "Package: $@"
86 $(hide) rm -rf $(dir $@) && mkdir -p $(dir $@)
87 $(hide) cp -f $^ $(dir $@)
88 $(hide) cd $(dir $@) && zip -q $(notdir $@) $(notdir $^)
89
90.PHONY: tradefed_dist
91tradefed_dist : $(tradefed_dist_zip)
92
93$(call dist-for-goals, tradefed_dist, $(tradefed_dist_zip))
94dist: tradefed_dist
95
96endif # tradefed in $(TARGET_BUILD_APPS)
97