Use config found in SortLogs instead of random log files

This both gives us a single Configuration object to use for all
matching configuration, and also gives us an abstraction to use when we
move the config out of the top of each log file and into a separate
file.

While we are here, expose name from the log file header as well.  This
removes the last user of the raw LogFileHeader from logger.

Change-Id: I0c99d64f9a7222e17100650cdf4b018ae224887a
diff --git a/WORKSPACE b/WORKSPACE
index 42a5945..aabd057 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -1,6 +1,6 @@
 workspace(name = "org_frc971")
 
-load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
+load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_repository")
 load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
 load(
     "//debian:python.bzl",
@@ -167,6 +167,15 @@
     path = "third_party/eigen",
 )
 
+http_archive(
+    name = "boringssl",
+    patch_args = ["-p1"],
+    patches = ["//debian:boringssl.patch"],
+    sha256 = "bcab08a22c28f5322316542aa2c3a9ef0a9f9fde9be22d489cee574867b24675",
+    strip_prefix = "boringssl-613fe9dbe74b58d6aaaf0d22fe57dccd964c7413",
+    urls = ["https://www.frc971.org/Build-Dependencies/boringssl-613fe9dbe74b58d6aaaf0d22fe57dccd964c7413.zip"],
+)
+
 # C++ rules for Bazel.
 http_archive(
     name = "rules_cc",