FAFT: Add Big and Blaze configs

BUG=chrome-os-partner:28249
BRANCH=none
TEST=Ran tests on Big, logs no longer show failure to find CrOS EC

Change-Id: I4b7f67629d0487cd60a68e91230b71891ff50a60
Reviewed-on: https://chromium-review.googlesource.com/196576
Reviewed-by: Yusuf Mohsinally <mohsinally@chromium.org>
Commit-Queue: David Hendricks <dhendrix@chromium.org>
Tested-by: David Hendricks <dhendrix@chromium.org>
diff --git a/server/cros/faft/config/big.py b/server/cros/faft/config/big.py
new file mode 100644
index 0000000..1f994fd
--- /dev/null
+++ b/server/cros/faft/config/big.py
@@ -0,0 +1,12 @@
+# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""FAFT configuration overrides for Big."""
+
+from autotest_lib.server.cros.faft.config import nyan
+
+
+class Values(nyan.Values):
+    """Inherit overrides from Nyan."""
+    pass
diff --git a/server/cros/faft/config/blaze.py b/server/cros/faft/config/blaze.py
new file mode 100644
index 0000000..5b3f5a5
--- /dev/null
+++ b/server/cros/faft/config/blaze.py
@@ -0,0 +1,12 @@
+# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""FAFT configuration overrides for Blaze."""
+
+from autotest_lib.server.cros.faft.config import nyan
+
+
+class Values(nyan.Values):
+    """Inherit overrides from Nyan."""
+    pass