| Hall Liu | 41ba81c | 2017-04-27 13:20:29 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # Build the Sample Embms Streaming frontend |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | src_dirs := src |
| 7 | res_dirs := res |
| 8 | |
| 9 | LOCAL_SRC_FILES := $(call all-java-files-under, $(src_dirs)) |
| 10 | LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dirs)) |
| 11 | |
| 12 | LOCAL_PACKAGE_NAME := EmbmsTestStreamingApp |
| Anton Hansson | 2871940 | 2018-02-23 16:06:17 +0000 | [diff] [blame] | 13 | LOCAL_PRIVATE_PLATFORM_APIS := true |
| Hall Liu | 41ba81c | 2017-04-27 13:20:29 -0700 | [diff] [blame] | 14 | |
| 15 | LOCAL_CERTIFICATE := platform |
| 16 | LOCAL_MODULE_TAGS := tests |
| Robert Greenwalt | 7c02b06 | 2017-05-30 11:51:40 -0700 | [diff] [blame] | 17 | #LOCAL_MODULE_TAGS := debug |
| Hall Liu | 41ba81c | 2017-04-27 13:20:29 -0700 | [diff] [blame] | 18 | |
| 19 | include $(BUILD_PACKAGE) |