$OpenBSD: patch-services_catalog_public_cpp_manifest_parsing_util_cc,v 1.3 2018/05/04 07:14:58 robert Exp $

Index: services/catalog/public/cpp/manifest_parsing_util.cc
--- services/catalog/public/cpp/manifest_parsing_util.cc.orig
+++ services/catalog/public/cpp/manifest_parsing_util.cc
@@ -17,7 +17,8 @@ bool IsValidPlatformName(const std::string& name) {
          name == Store::kRequiredFilesKey_PlatformValue_Linux ||
          name == Store::kRequiredFilesKey_PlatformValue_MacOSX ||
          name == Store::kRequiredFilesKey_PlatformValue_Android ||
-         name == Store::kRequiredFilesKey_PlatformValue_Fuchsia;
+         name == Store::kRequiredFilesKey_PlatformValue_Fuchsia ||
+         name == Store::kRequiredFilesKey_PlatformValue_OpenBSD;
 }
 
 bool IsCurrentPlatform(const std::string& name) {
@@ -31,6 +32,8 @@ bool IsCurrentPlatform(const std::string& name) {
   return name == Store::kRequiredFilesKey_PlatformValue_Android;
 #elif defined(OS_FUCHSIA)
   return name == Store::kRequiredFilesKey_PlatformValue_Fuchsia;
+#elif defined(OS_OPENBSD)
+  return name == Store::kRequiredFilesKey_PlatformValue_OpenBSD;
 #else
 #error This architecture is not supported.
 #endif
