diff options
author | Steve Fung <stevefung@google.com> | 2016-01-20 01:15:20 -0800 |
---|---|---|
committer | Steve Fung <stevefung@google.com> | 2016-01-20 01:15:20 -0800 |
commit | 333fc5c19dd9a270c5f40abc3c4dac7da5b0c9db (patch) | |
tree | 3637ae30685c971882e49d8aba3f10e11292139e /crash_reporter | |
parent | 312532252afeb7a488b9de98259e1fd038aa42b2 (diff) | |
download | core-333fc5c19dd9a270c5f40abc3c4dac7da5b0c9db.tar.gz core-333fc5c19dd9a270c5f40abc3c4dac7da5b0c9db.tar.bz2 core-333fc5c19dd9a270c5f40abc3c4dac7da5b0c9db.zip |
crash_reporter: Add unit tests to debug builds
Add crash_reporter_tests to debug builds, so that they can be
run by test_droid.
Bug: 26663796
Change-Id: Iddaa14ab55474875a45b0e8482bac310fbe8cff2
Test: /data/nativetest/crash_reporter_tests exists on eng build
Diffstat (limited to 'crash_reporter')
-rw-r--r-- | crash_reporter/Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crash_reporter/Android.mk b/crash_reporter/Android.mk index 4feb72ab9..fa564b218 100644 --- a/crash_reporter/Android.mk +++ b/crash_reporter/Android.mk @@ -135,6 +135,9 @@ include $(BUILD_PREBUILT) include $(CLEAR_VARS) LOCAL_MODULE := crash_reporter_tests LOCAL_CPP_EXTENSION := $(crash_reporter_cpp_extension) +ifdef BRILLO +LOCAL_MODULE_TAGS := debug +endif LOCAL_SHARED_LIBRARIES := libchrome \ libbrillo \ libcutils \ |