From 2896724eaf851ee4b3d6f14eae05dcc626d88cdd Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 22 Feb 2020 23:30:31 -0500 Subject: Issue #1053 - Remove android support from mfbt --- mfbt/Assertions.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'mfbt/Assertions.h') diff --git a/mfbt/Assertions.h b/mfbt/Assertions.h index e7b010b7f..94dcfb8a5 100644 --- a/mfbt/Assertions.h +++ b/mfbt/Assertions.h @@ -66,9 +66,6 @@ __declspec(dllimport) void* __stdcall GetCurrentProcess(void); #else # include #endif -#ifdef ANDROID -# include -#endif /* * MOZ_STATIC_ASSERT may be used to assert a condition *at compile time* in C. @@ -158,33 +155,22 @@ static MOZ_COLD MOZ_ALWAYS_INLINE void MOZ_ReportAssertionFailure(const char* aStr, const char* aFilename, int aLine) MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS { -#ifdef ANDROID - __android_log_print(ANDROID_LOG_FATAL, "MOZ_Assert", - "Assertion failure: %s, at %s:%d\n", - aStr, aFilename, aLine); -#else fprintf(stderr, "Assertion failure: %s, at %s:%d\n", aStr, aFilename, aLine); #if defined (MOZ_DUMP_ASSERTION_STACK) nsTraceRefcnt::WalkTheStack(stderr); #endif fflush(stderr); -#endif } static MOZ_COLD MOZ_ALWAYS_INLINE void MOZ_ReportCrash(const char* aStr, const char* aFilename, int aLine) MOZ_PRETEND_NORETURN_FOR_STATIC_ANALYSIS { -#ifdef ANDROID - __android_log_print(ANDROID_LOG_FATAL, "MOZ_CRASH", - "Hit MOZ_CRASH(%s) at %s:%d\n", aStr, aFilename, aLine); -#else fprintf(stderr, "Hit MOZ_CRASH(%s) at %s:%d\n", aStr, aFilename, aLine); #if defined(MOZ_DUMP_ASSERTION_STACK) nsTraceRefcnt::WalkTheStack(stderr); #endif fflush(stderr); -#endif } /** -- cgit v1.2.3