Add a barebones websocket server for vision debug
Change-Id: Ifc1a2fc1ae7f1312d28923e33e90eb43ac43e0c4
diff --git a/third_party/seasocks/BUILD b/third_party/seasocks/BUILD
index 0daf8ea..974b131 100644
--- a/third_party/seasocks/BUILD
+++ b/third_party/seasocks/BUILD
@@ -1,22 +1,24 @@
-licenses(['notice'])
+licenses(["notice"])
cc_library(
- name = 'seasocks',
- visibility = ['//visibility:public'],
- srcs = glob(['src/main/c/**/*.cpp']),
- hdrs = glob([
- 'src/main/c/**/*.h',
- ], exclude=[
- 'src/main/internal/**/*',
- ]),
- includes = ['src/main/c'],
- copts = [
- # TODO(Brian): Don't apply this to all of the code...
- '-Wno-cast-align',
- '-Wno-cast-qual',
-
- '-Wno-switch-enum',
- '-Wno-format-nonliteral',
- '-Wno-unused-parameter',
- ],
+ name = "seasocks",
+ srcs = glob(include = ["src/main/c/**/*.cpp"]),
+ hdrs = glob(
+ include = [
+ "src/main/c/**/*.h",
+ ],
+ exclude = [
+ "src/main/internal/**/*",
+ ],
+ ),
+ copts = [
+ # TODO(Brian): Don't apply this to all of the code...
+ "-Wno-cast-align",
+ "-Wno-cast-qual",
+ "-Wno-switch-enum",
+ "-Wno-format-nonliteral",
+ "-Wno-unused-parameter",
+ ],
+ includes = ["src/main/c"],
+ visibility = ["//visibility:public"],
)