libweave: Fix compile errors on Chrome OS

Need to include <algorithm> explicitly to use std::find and
std::replace. On Android these included indirectly by some other
library headers, but on Chrome OS they are not and this breaks
the build.

Change-Id: I590e00aaaa3796a6614147bd5acb404c2fe078d6
Reviewed-on: https://weave-review.googlesource.com/3063
Reviewed-by: Robert Ginda <rginda@google.com>
diff --git a/src/config.cc b/src/config.cc
index cd28de9..108c6aa 100644
--- a/src/config.cc
+++ b/src/config.cc
@@ -4,6 +4,8 @@
 
 #include "src/config.h"
 
+
+#include <algorithm>
 #include <set>
 
 #include <base/bind.h>