blob: 10dda56b7598661b004cac784c1a0666bf0c47c6 [file] [log] [blame]
Felipe Leme2628e9e2016-04-12 16:36:51 -07001LOCAL_PATH:= $(call my-dir)
Felipe Leme59f5af02016-07-21 20:10:57 -07002
3# bugreportz
4# ==========
5
Felipe Leme2628e9e2016-04-12 16:36:51 -07006include $(CLEAR_VARS)
7
Felipe Leme59f5af02016-07-21 20:10:57 -07008LOCAL_SRC_FILES:= \
9 bugreportz.cpp \
10 main.cpp \
Felipe Leme2628e9e2016-04-12 16:36:51 -070011
12LOCAL_MODULE:= bugreportz
13
Felipe Leme59f5af02016-07-21 20:10:57 -070014LOCAL_CFLAGS := -Werror -Wall
Felipe Leme2628e9e2016-04-12 16:36:51 -070015
Felipe Leme59f5af02016-07-21 20:10:57 -070016LOCAL_SHARED_LIBRARIES := \
17 libbase \
18 libcutils \
Felipe Leme2628e9e2016-04-12 16:36:51 -070019
20include $(BUILD_EXECUTABLE)
Felipe Leme59f5af02016-07-21 20:10:57 -070021
22# bugreportz_test
23# ===============
24
25include $(CLEAR_VARS)
26
27LOCAL_MODULE := bugreportz_test
Dan Shiaf307712017-03-26 23:49:27 -070028LOCAL_COMPATIBILITY_SUITE := device-tests
Felipe Leme59f5af02016-07-21 20:10:57 -070029LOCAL_MODULE_TAGS := tests
30
31LOCAL_CFLAGS := -Werror -Wall
32
33LOCAL_SRC_FILES := \
34 bugreportz.cpp \
35 bugreportz_test.cpp \
36
37LOCAL_STATIC_LIBRARIES := \
38 libgmock \
39
40LOCAL_SHARED_LIBRARIES := \
41 libbase \
42 libutils \
43
44include $(BUILD_NATIVE_TEST)