project: msm8996: Add watch dog and disable dload properties on 8996 platform.

The watch dog property is used for catching the LK stalls or early
kernel stalls. Default is disabled.

The disable dload property is used for disabling the ramdump. Default
is disabled.

Change-Id: Ie9a9f0af5a7a753b560a58ca4a3501c611930f74
diff --git a/project/msm8996.mk b/project/msm8996.mk
index dae1bc9..5978add 100644
--- a/project/msm8996.mk
+++ b/project/msm8996.mk
@@ -126,3 +126,11 @@
 ifeq ($(ENABLE_UNITTEST_FW),1)
 DEFINES += UNITTEST_FW_SUPPORT=1
 endif
+
+#Disable the dload mode
+DEFINES += DISABLE_DLOAD_MODE=0
+
+ENABLE_WDOG_SUPPORT := 0
+ifeq ($(ENABLE_WDOG_SUPPORT),1)
+DEFINES += WDOG_SUPPORT=1
+endif