f0c719821d
Refactor the am instrument command and add a version that outputs protobuf in addition to the old one that prints loosely formatted text. Change-Id: I34079d8af2b7b6c6c59837d54719806109ba286c Test: bit tool
30 lines
775 B
Makefile
30 lines
775 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
#
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-java-files-under, src) \
|
|
$(call all-proto-files-under, proto)
|
|
LOCAL_MODULE := am
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := stream
|
|
include $(BUILD_JAVA_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := am
|
|
LOCAL_SRC_FILES := am
|
|
LOCAL_MODULE_CLASS := EXECUTABLES
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_PREBUILT)
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-proto-files-under, proto)
|
|
LOCAL_MODULE := libinstrumentation
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := full
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := \
|
|
$(call intermediates-dir-for,STATIC_LIBRARIES,libinstrumentation,HOST,,,)/proto/$(LOCAL_PATH)/proto
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|