1 # 2 # Copyright (C) 2013-2014 The Android Open Source Project 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # http://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 # 16 17 LOCAL_PATH := $(call my-dir) 18 19 test_module_prefix := logcat- 20 test_tags := tests 21 22 test_c_flags := \ 23 -fstack-protector-all \ 24 -g \ 25 -Wall -Wextra \ 26 -Werror \ 27 -fno-builtin \ 28 -std=gnu++11 29 30 # ----------------------------------------------------------------------------- 31 # Benchmarks (actually a gTest where the result code does not matter) 32 # ---------------------------------------------------------------------------- 33 34 benchmark_src_files := \ 35 logcat_benchmark.cpp 36 37 # Build benchmarks for the device. Run with: 38 # adb shell /data/nativetest/logcat-benchmarks/logcat-benchmarks 39 include $(CLEAR_VARS) 40 LOCAL_MODULE := $(test_module_prefix)benchmarks 41 LOCAL_MODULE_TAGS := $(test_tags) 42 LOCAL_CFLAGS += $(test_c_flags) 43 LOCAL_SRC_FILES := $(benchmark_src_files) 44 include $(BUILD_NATIVE_TEST) 45 46 # ----------------------------------------------------------------------------- 47 # Unit tests. 48 # ----------------------------------------------------------------------------- 49 50 test_src_files := \ 51 logcat_test.cpp \ 52 53 # Build tests for the device (with .so). Run with: 54 # adb shell /data/nativetest/logcat-unit-tests/logcat-unit-tests 55 include $(CLEAR_VARS) 56 LOCAL_MODULE := $(test_module_prefix)unit-tests 57 LOCAL_MODULE_TAGS := $(test_tags) 58 LOCAL_CFLAGS += $(test_c_flags) 59 LOCAL_SHARED_LIBRARIES := liblog 60 LOCAL_SRC_FILES := $(test_src_files) 61 include $(BUILD_NATIVE_TEST) 62