diff options
author | Colin Cross <ccross@android.com> | 2017-05-31 01:37:26 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-05-31 01:37:26 +0000 |
commit | 58dc4c8dcdb90754660ef8f35b2a3a5436c672f5 (patch) | |
tree | ff7ffe5d115b3c2c3564829eedf3268168bc2219 /cmds/uiautomator | |
parent | 541f9cf57691bae562415ca89e6e333c8114bc48 (diff) | |
parent | 2aa649593be8ff1d2aa838fa2b4ea2f45ff4deda (diff) |
Merge "Use LOCAL_ADDITIONAL_DEPENDENCIES instead of build system internals" am: a4982eb5dd am: aa92f80288
am: 2aa649593b
Change-Id: Ie28b57bd8ed157a7a34a5224bf3f52d7818b6205
Diffstat (limited to 'cmds/uiautomator')
-rw-r--r-- | cmds/uiautomator/library/Android.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmds/uiautomator/library/Android.mk b/cmds/uiautomator/library/Android.mk index e70bd1162fbb..4bf856f8cbfa 100644 --- a/cmds/uiautomator/library/Android.mk +++ b/cmds/uiautomator/library/Android.mk @@ -64,10 +64,9 @@ include $(CLEAR_VARS) LOCAL_MODULE := android_uiautomator LOCAL_JAVA_LIBRARIES := $(uiautomator.core_java_libraries) LOCAL_SOURCE_FILES_ALL_GENERATED := true -include $(BUILD_STATIC_JAVA_LIBRARY) # Make sure to run droiddoc first to generate the stub source files. -$(full_classes_compiled_jar) : $(uiautomator_stubs_stamp) -$(built_dex_intermediate) : $(uiautomator_stubs_stamp) +LOCAL_ADDITIONAL_DEPENDENCIES := $(uiautomator_stubs_stamp) +include $(BUILD_STATIC_JAVA_LIBRARY) ############################################### # API check |