build breakage: LOG_TAG redefinition

Test: aosp_fugu build fixed
Bug: 26552300
Bug: 31289077
Change-Id: I5a3bb998b9274c734bc745f66ef625f63ff51c96
diff --git a/videocodec/libvpx_internal/x86/trace_conf.h b/videocodec/libvpx_internal/x86/trace_conf.h
index b410dbf..f204647 100644
--- a/videocodec/libvpx_internal/x86/trace_conf.h
+++ b/videocodec/libvpx_internal/x86/trace_conf.h
@@ -1,9 +1,9 @@
 #ifndef TRACE_CONF_H
 #define TRACE_CONF_H
 
-#include <android/log.h>
-
 #define LOG_TAG "libvpx"
 #define LOGD(fmt_str, ...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "[%s:%d] "fmt_str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
 
+#include <android/log.h>
+
 #endif