diff options
| author | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2013-08-09 17:11:09 +0100 |
|---|---|---|
| committer | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2013-08-09 17:11:09 +0100 |
| commit | fe8bc91ae750b5749e14b517a536c976cb45471f (patch) | |
| tree | 863bc358a5b563f8f4b88e173c8053db9f0cbea3 | |
| parent | 843599985b06fc7b224109d58e73d91d5920eeb1 (diff) | |
| download | android_frameworks_opt_hardware-fe8bc91ae750b5749e14b517a536c976cb45471f.tar.gz android_frameworks_opt_hardware-fe8bc91ae750b5749e14b517a536c976cb45471f.tar.bz2 android_frameworks_opt_hardware-fe8bc91ae750b5749e14b517a536c976cb45471f.zip | |
Support multiple source paths
This will not verify for duplicate classes yet, so be careful not
to place duplicate implementations on multiple locations
| -rw-r--r-- | Android.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,8 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) ifneq ($(BOARD_HARDWARE_CLASS),) - LOCAL_SRC_FILES += $(call all-java-files-under, ../../../$(BOARD_HARDWARE_CLASS)) + $(foreach bcp,$(BOARD_HARDWARE_CLASS), \ + $(eval LOCAL_SRC_FILES += $(call all-java-files-under, ../../../$(bcp)))) endif BASE_SRC_FILES += $(call all-java-files-under, src/) |
