The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | # Copyright 2008 The Android Open Source Project |
| 2 | # |
| 3 | LOCAL_PATH:= $(call my-dir) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 4 | |
Ying Wang | 33c29b0 | 2013-02-19 16:42:16 -0800 | [diff] [blame] | 5 | include $(CLEAR_VARS) |
Joe Onorato | f0c7198 | 2016-10-20 11:27:16 -0700 | [diff] [blame] | 6 | LOCAL_SRC_FILES := \ |
| 7 | $(call all-java-files-under, src) \ |
| 8 | $(call all-proto-files-under, proto) |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 9 | LOCAL_MODULE := am |
Joe Onorato | f0c7198 | 2016-10-20 11:27:16 -0700 | [diff] [blame] | 10 | LOCAL_PROTOC_OPTIMIZE_TYPE := stream |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 11 | include $(BUILD_JAVA_LIBRARY) |
| 12 | |
| 13 | include $(CLEAR_VARS) |
Ying Wang | 33c29b0 | 2013-02-19 16:42:16 -0800 | [diff] [blame] | 14 | LOCAL_MODULE := am |
| 15 | LOCAL_SRC_FILES := am |
| 16 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 17 | LOCAL_MODULE_TAGS := optional |
| 18 | include $(BUILD_PREBUILT) |