summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/utils/Trace.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/utils/Trace.h b/include/utils/Trace.h
index 49578c47df..6ee343d79a 100644
--- a/include/utils/Trace.h
+++ b/include/utils/Trace.h
@@ -17,6 +17,8 @@
#ifndef ANDROID_TRACE_H
#define ANDROID_TRACE_H
+#ifdef HAVE_ANDROID_OS
+
#include <fcntl.h>
#include <stdint.h>
#include <stdio.h>
@@ -57,4 +59,11 @@ private:
}; // namespace android
+#else // HAVE_ANDROID_OS
+
+#define ATRACE_NAME(...)
+#define ATRACE_CALL()
+
+#endif // HAVE_ANDROID_OS
+
#endif // ANDROID_TRACE_H