Add io disable check

R=iposva@google.com

Review URL: https://codereview.chromium.org/1837603002 .
diff --git a/codereview.settings b/codereview.settings
new file mode 100644
index 0000000..cbf7ef5
--- /dev/null
+++ b/codereview.settings
@@ -0,0 +1,4 @@
+# This file is used by gcl to get repository specific information.
+CODE_REVIEW_SERVER: http://codereview.chromium.org
+VIEW_VC: https://github.com/dart-lang/root_certificates/commit/
+CC_LIST: reviews@dartlang.org
diff --git a/root_certificates.cc b/root_certificates.cc
index 375f7ff..c314de5 100644
--- a/root_certificates.cc
+++ b/root_certificates.cc
@@ -6,7 +6,7 @@
  * fetched June 29, 2015, and converted to PEM format and to a C char array.
  */
 
-#if !defined(DART_IO_SECURE_SOCKET_DISABLED)
+#if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED)
 
 #include "platform/globals.h"
 #if !defined(TARGET_OS_MACOS) && !defined(TARGET_OS_ANDROID)
@@ -20628,4 +20628,5 @@
 
 #endif  // !defined(TARGET_OS_MACOS) && !defined(TARGET_OS_ANDROID)
 
-#endif  // !defined(DART_IO_SECURE_SOCKET_DISABLED)
+#endif  // !defined(DART_IO_DISABLED) &&
+        // !defined(DART_IO_SECURE_SOCKET_DISABLED)