Dianne Hackborn | 514074f | 2013-02-11 10:52:46 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := optional |
| 5 | |
Felipe Leme | e53e85f | 2015-11-17 17:37:53 -0800 | [diff] [blame] | 6 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Dianne Hackborn | 514074f | 2013-02-11 10:52:46 -0800 | [diff] [blame] | 7 | |
Steve McKay | 53a528b | 2016-04-26 15:49:50 -0700 | [diff] [blame] | 8 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 \ |
| 9 | android-support-documents-archive |
Jeff Sharkey | 02ffba9 | 2013-03-08 16:13:15 -0800 | [diff] [blame] | 10 | |
Dianne Hackborn | 514074f | 2013-02-11 10:52:46 -0800 | [diff] [blame] | 11 | LOCAL_PACKAGE_NAME := Shell |
| 12 | LOCAL_CERTIFICATE := platform |
Christopher Tate | ccbf84f | 2013-05-08 15:25:41 -0700 | [diff] [blame] | 13 | LOCAL_PRIVILEGED_MODULE := true |
Dianne Hackborn | 514074f | 2013-02-11 10:52:46 -0800 | [diff] [blame] | 14 | |
Allen Hair | 02fd6094 | 2016-08-25 16:06:26 -0700 | [diff] [blame^] | 15 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.shell.* |
| 16 | |
Dianne Hackborn | 514074f | 2013-02-11 10:52:46 -0800 | [diff] [blame] | 17 | include $(BUILD_PACKAGE) |
Felipe Leme | e53e85f | 2015-11-17 17:37:53 -0800 | [diff] [blame] | 18 | |
| 19 | include $(LOCAL_PATH)/tests/Android.mk |