diff options
author | Xavier Ducrohet <xav@android.com> | 2012-12-06 18:22:11 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-12-06 18:47:57 -0800 |
commit | fe50887a23ba08e8e18a4a855a457473805da0b1 (patch) | |
tree | a23689d32e5b367ddc0b95095a28d943b004d9f6 /lint/libs/lint_api/Android.mk | |
parent | b6c18b79d96507da7f7bc932df3c72c5faada43c (diff) | |
download | sdk-fe50887a23ba08e8e18a4a855a457473805da0b1.zip sdk-fe50887a23ba08e8e18a4a855a457473805da0b1.tar.gz sdk-fe50887a23ba08e8e18a4a855a457473805da0b1.tar.bz2 |
Refactor lint folder structure.
Move folders around to match default gradle/maven
folder structure.
The custom structure confused some IDEs when importing
the project as a Gradle project.
Change-Id: I5c059cc6fdf0ac2444b03d435f83f853363cfa32
Diffstat (limited to 'lint/libs/lint_api/Android.mk')
-rw-r--r-- | lint/libs/lint_api/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lint/libs/lint_api/Android.mk b/lint/libs/lint_api/Android.mk index 9e2e678..1d70a25 100644 --- a/lint/libs/lint_api/Android.mk +++ b/lint/libs/lint_api/Android.mk @@ -17,8 +17,8 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) # Only compile source java files in this lib. -LOCAL_SRC_FILES := $(call all-java-files-under, src) -LOCAL_JAVA_RESOURCE_DIRS := src +LOCAL_SRC_FILES := $(call all-java-files-under, src/main/java) +LOCAL_JAVA_RESOURCE_DIRS := src/main/java LOCAL_JAVA_LIBRARIES := \ lombok-ast-0.2 \ common \ |