blob: 6845e751125d84e2f1aadbac0579fc7478baa6fd [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)
Julien Desprez71489f32017-03-03 12:46:34 +000018# Module to compile protos for tradefed
19LOCAL_MODULE := tradefed-protos
20LOCAL_SRC_FILES := $(call all-proto-files-under, proto)
21LOCAL_JAVA_LIBRARIES := host-libprotobuf-java-full
22LOCAL_SOURCE_FILES_ALL_GENERATED := true
23LOCAL_MODULE_TAGS := optional
24
25include $(BUILD_HOST_JAVA_LIBRARY)
26
27include $(CLEAR_VARS)
Brett Chabotf72f44c2010-01-27 11:09:46 -080028
29# Only compile source java files in this lib.
Julien Desprez71489f32017-03-03 12:46:34 +000030LOCAL_SRC_FILES := $(call all-java-files-under, src)
Brett Chabotf72f44c2010-01-27 11:09:46 -080031
Brett Chabote278a5b2010-06-01 16:20:14 -070032LOCAL_JAVA_RESOURCE_DIRS := res
33
Guang Zhu040a43a2012-01-25 14:38:16 -080034LOCAL_JAVACFLAGS += -g -Xlint
Kevin Cheng75b65bd2017-04-06 16:18:43 -070035-include tools/tradefederation/core/error_prone_rules.mk
Guang Zhuc5637f72011-07-24 13:15:24 -070036
Brett Chabot0aebe552010-09-13 14:26:46 -070037LOCAL_MODULE := tradefed
Brett Chabotf72f44c2010-01-27 11:09:46 -080038
Brett Chabot36d4f872010-09-15 18:28:27 -070039LOCAL_MODULE_TAGS := optional
Guang Zhu8f607b12017-04-07 11:17:28 -070040LOCAL_STATIC_JAVA_LIBRARIES := junit-host kxml2-2.3.0 jline-1.0 tf-remote-client commons-compress-prebuilt host-libprotobuf-java-full tradefed-protos
Brett Chabotfee380c2013-02-01 15:25:08 -080041# emmalib is only a runtime dependency if generating code coverage reporters,
42# not a compile time dependency
Guang Zhu8f607b12017-04-07 11:17:28 -070043LOCAL_JAVA_LIBRARIES := emmalib jack-jacoco-reporter loganalysis tools-common-prebuilt
Brett Chabotf72f44c2010-01-27 11:09:46 -080044
Julien Desprezaf73ee42015-12-11 14:03:29 +000045LOCAL_JAR_MANIFEST := MANIFEST.mf
46
Brett Chabotf72f44c2010-01-27 11:09:46 -080047include $(BUILD_HOST_JAVA_LIBRARY)
48
Brett Chabot4bd67d52011-02-07 11:54:37 -080049# makefile rules to copy jars to HOST_OUT/tradefed
50# so tradefed.sh can automatically add to classpath
51DEST_JAR := $(HOST_OUT)/tradefed/$(LOCAL_MODULE).jar
52$(DEST_JAR): $(LOCAL_BUILT_MODULE)
53 $(copy-file-to-new-target)
54
Allen Haira9135322016-08-15 17:41:09 -070055$(HOST_OUT)/tradefed/%.jar : $(HOST_OUT_JAVA_LIBRARIES)/%.jar
56 $(copy-file-to-new-target)
57
Brett Chabot4bd67d52011-02-07 11:54:37 -080058# this dependency ensure the above rule will be executed if jar is built
59$(LOCAL_INSTALLED_MODULE) : $(DEST_JAR)
Allen Haira9135322016-08-15 17:41:09 -070060$(LOCAL_INSTALLED_MODULE) : $(foreach m, $(LOCAL_JAVA_LIBRARIES), $(HOST_OUT)/tradefed/$(m).jar)
Brett Chabot4bd67d52011-02-07 11:54:37 -080061
Omari Stephens6aeef7c2011-10-19 17:14:47 -070062#######################################################
Omari Stephens966291b2013-03-06 21:09:21 -080063# intentionally skipping CLEAR_VARS
Omari Stephens966291b2013-03-06 21:09:21 -080064# Enable the build process to generate javadoc
Ying Wangd786e242014-07-07 16:48:21 -070065# We need to reference symbols in the jar built above.
Billy Lambertabb7685c2017-02-24 11:12:32 -080066
67# ==== docs for legacy sac app engine
68#LOCAL_MODULE = tradefed-sac-deprecated
Omari Stephensd62c4712015-07-24 16:45:15 -070069LOCAL_JAVA_LIBRARIES += tradefed
70LOCAL_IS_HOST_MODULE:=true
71LOCAL_MODULE_CLASS := JAVA_LIBRARIES
72LOCAL_ADDITIONAL_DEPENDENCIES := tradefed
73LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR:=build/tools/droiddoc/templates-sac
74LOCAL_DROIDDOC_OPTIONS:= \
75 -package \
76 -toroot / \
77 -hdf android.whichdoc online \
78 -hdf sac true \
79 -hdf devices true \
Omari Stephensaabdc0b2015-08-14 18:43:03 -070080 -showAnnotationOverridesVisibility \
Omari Stephensd62c4712015-07-24 16:45:15 -070081 -showAnnotation com.android.tradefed.config.OptionClass \
82 -showAnnotation com.android.tradefed.config.Option \
Omari Stephens966291b2013-03-06 21:09:21 -080083
Omari Stephensd62c4712015-07-24 16:45:15 -070084include $(BUILD_DROIDDOC)
Omari Stephens966291b2013-03-06 21:09:21 -080085
Billy Lambertabb7685c2017-02-24 11:12:32 -080086# ==== docs for the web (on the devsite app engine server)
87LOCAL_MODULE = tradefed-ds
88LOCAL_JAVA_LIBRARIES += tradefed
89LOCAL_IS_HOST_MODULE := true
90LOCAL_MODULE_CLASS := JAVA_LIBRARIES
91LOCAL_ADDITIONAL_DEPENDENCIES := tradefed libcore/Docs.mk
92LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR := external/doclava/res/assets/templates-sdk
93LOCAL_DROIDDOC_OPTIONS := \
94 -hdf sac true \
95 -hdf devices true \
96 -hdf android.whichdoc online \
97 -hdf css.path /reference/assets/css/doclava-devsite.css \
98 -hdf book.root toc \
99 -yaml _toc.yaml \
100 -apidocsdir reference/tradefed/ \
101 -werror \
102 -package \
103 -devsite \
104
105include $(BUILD_DROIDDOC)
106
Omari Stephens966291b2013-03-06 21:09:21 -0800107#######################################################
Omari Stephens6aeef7c2011-10-19 17:14:47 -0700108include $(CLEAR_VARS)
109
110# Create a simple alias to build all the TF-related targets
111# Note that this is incompatible with `make dist`. If you want to make
112# the distribution, you must run `tapas` with the individual target names.
113.PHONY: tradefed-all
Omari Stephens6e3c34d2015-04-14 18:40:33 -0700114tradefed-all: tradefed tradefed-tests tf-prod-tests tf-prod-metatests tradefed_win script_help verify
Omari Stephens6aeef7c2011-10-19 17:14:47 -0700115
Brett Chabot4bd67d52011-02-07 11:54:37 -0800116# ====================================
117include $(CLEAR_VARS)
118# copy tradefed.sh script to host dir
119
120LOCAL_MODULE_TAGS := optional
121
Tsu Chiang Chuang3f224172016-05-12 12:33:43 -0700122LOCAL_PREBUILT_EXECUTABLES := tradefed.sh tradefed_win.bat script_help.sh verify.sh run_tf_cmd.sh
Brett Chabot4bd67d52011-02-07 11:54:37 -0800123include $(BUILD_HOST_PREBUILT)
124
Brett Chabotf72f44c2010-01-27 11:09:46 -0800125# Build all sub-directories
126include $(call all-makefiles-under,$(LOCAL_PATH))
Omari Stephens64043d82012-01-27 18:14:56 -0800127
128########################################################
Omari Stephens06bcef12015-05-06 16:26:49 -0700129# Zip up the built files and dist it as tradefed.zip
130ifneq (,$(filter tradefed tradefed-all, $(TARGET_BUILD_APPS)))
Omari Stephens64043d82012-01-27 18:14:56 -0800131
Guang Zhu7f907492017-01-06 12:02:58 -0800132tradefed_dist_host_jars := tradefed tradefed-tests tf-prod-tests emmalib jack-jacoco-reporter loganalysis loganalysis-tests tf-remote-client
Omari Stephens64043d82012-01-27 18:14:56 -0800133tradefed_dist_host_jar_files := $(foreach m, $(tradefed_dist_host_jars), $(HOST_OUT_JAVA_LIBRARIES)/$(m).jar)
134
Tsu Chiang Chuang3f224172016-05-12 12:33:43 -0700135tradefed_dist_host_exes := tradefed.sh tradefed_win.bat script_help.sh verify.sh run_tf_cmd.sh
Omari Stephens64043d82012-01-27 18:14:56 -0800136tradefed_dist_host_exe_files := $(foreach m, $(tradefed_dist_host_exes), $(BUILD_OUT_EXECUTABLES)/$(m))
137
David Hu6fb582f2012-12-19 18:49:19 -0800138tradefed_dist_test_apks := TradeFedUiTestApp TradeFedTestApp DeviceSetupUtil
Ying Wang0f9b11c2014-07-21 14:03:11 -0700139tradefed_dist_test_apk_files := $(foreach m, $(tradefed_dist_test_apks), $(TARGET_OUT_DATA_APPS)/$(m)/$(m).apk)
Omari Stephens64043d82012-01-27 18:14:56 -0800140
141tradefed_dist_files := \
142 $(tradefed_dist_host_jar_files) \
143 $(tradefed_dist_test_apk_files) \
Brett Chabotfee380c2013-02-01 15:25:08 -0800144 $(tradefed_dist_host_exe_files)
Omari Stephens64043d82012-01-27 18:14:56 -0800145
146tradefed_dist_intermediates := $(call intermediates-dir-for,PACKAGING,tradefed_dist,HOST,COMMON)
147tradefed_dist_zip := $(tradefed_dist_intermediates)/tradefed.zip
148$(tradefed_dist_zip) : $(tradefed_dist_files)
149 @echo "Package: $@"
150 $(hide) rm -rf $(dir $@) && mkdir -p $(dir $@)
151 $(hide) cp -f $^ $(dir $@)
152 $(hide) cd $(dir $@) && zip -q $(notdir $@) $(notdir $^)
153
Colin Cross29197902015-10-05 13:19:12 -0700154$(call dist-for-goals, apps_only, $(tradefed_dist_zip))
Omari Stephens64043d82012-01-27 18:14:56 -0800155
156endif # tradefed in $(TARGET_BUILD_APPS)