diff --git a/indexer/indexer_tests/jni/Android.mk b/indexer/indexer_tests/jni/Android.mk deleted file mode 100644 index cb9ab99ee3..0000000000 --- a/indexer/indexer_tests/jni/Android.mk +++ /dev/null @@ -1,15 +0,0 @@ -# @todo(vbykoianko) -# Probably this file shell be generated with a script based on .pro. -# If you do this take into acount: -# - the order of libs is important. It solves some linking problems; -# - there are additional libs here (android_native_app_glue and zlib); - -LOCAL_PATH := $(call my-dir) -ROOT_PATH := ../.. -include ../../android/UnitTests/jni/AndroidBeginning.mk - -LOCAL_MODULE := indexer_tests - -LOCAL_STATIC_LIBRARIES := succinct android_native_app_glue indexer platform geometry coding base protobuf opening_hours minizip zlib - -include ../../android/UnitTests/jni/AndroidEnding.mk diff --git a/indexer/indexer_tests/jni/Application.mk b/indexer/indexer_tests/jni/Application.mk deleted file mode 120000 index 43a1529450..0000000000 --- a/indexer/indexer_tests/jni/Application.mk +++ /dev/null @@ -1 +0,0 @@ -../../../android/UnitTests/jni/Application.mk \ No newline at end of file diff --git a/indexer/indexer_tests/jni/test.cpp b/indexer/indexer_tests/jni/test.cpp deleted file mode 100644 index 30561130d9..0000000000 --- a/indexer/indexer_tests/jni/test.cpp +++ /dev/null @@ -1,15 +0,0 @@ -#include "./test.hpp" - -#include "android/UnitTests/jni/mock.hpp" - - -extern int main(int argc, char * argv[]); - -namespace indexer_tests -{ - void test(android_app * state) - { - Initialize(state); - main(0, nullptr); - } -} diff --git a/indexer/indexer_tests/jni/test.hpp b/indexer/indexer_tests/jni/test.hpp deleted file mode 100644 index a7b6e84a01..0000000000 --- a/indexer/indexer_tests/jni/test.hpp +++ /dev/null @@ -1,10 +0,0 @@ -// @todo(vbykoianko) files test.hpp and test.cpp should be generated with a script based on -// tests_list.sh file or *.pro files -#pragma once - -struct android_app; - -namespace indexer_tests -{ - void test(android_app * state); -}