Buildified the world again.
bzl files were pretty off.
Change-Id: Ief87d7c0a08c6706c8c6c573afef95a6d51968e7
diff --git a/frc971/analysis/BUILD b/frc971/analysis/BUILD
index ad5552b..b45031f 100644
--- a/frc971/analysis/BUILD
+++ b/frc971/analysis/BUILD
@@ -3,10 +3,10 @@
py_binary(
name = "plot_action",
srcs = [
- "plotter.py",
- "plot_action.py",
- "logreader.py",
"logentry.py",
+ "logreader.py",
+ "plot_action.py",
+ "plotter.py",
],
legacy_create_init = False,
restricted_to = ["//tools:k8"],
diff --git a/frc971/config/BUILD b/frc971/config/BUILD
index 07394d4..0f4f7ba 100644
--- a/frc971/config/BUILD
+++ b/frc971/config/BUILD
@@ -1,14 +1,14 @@
filegroup(
- name = 'rio_robotCommand',
- srcs = [ 'robotCommand' ],
+ name = "rio_robotCommand",
+ srcs = ["robotCommand"],
)
sh_binary(
- name = 'setup_roborio',
- srcs = [ 'setup_roborio.sh' ],
- visibility = [ '//visibility:public' ],
- data = [
- ':rio_robotCommand',
- '@arm_frc_linux_gnueabi_repo//:compiler_pieces',
- ],
+ name = "setup_roborio",
+ srcs = ["setup_roborio.sh"],
+ data = [
+ ":rio_robotCommand",
+ "@arm_frc_linux_gnueabi_repo//:compiler_pieces",
+ ],
+ visibility = ["//visibility:public"],
)
diff --git a/frc971/control_loops/voltage_cap/BUILD b/frc971/control_loops/voltage_cap/BUILD
index 8c2df46..2aa1dea 100644
--- a/frc971/control_loops/voltage_cap/BUILD
+++ b/frc971/control_loops/voltage_cap/BUILD
@@ -1,23 +1,23 @@
-package(default_visibility = ['//visibility:public'])
+package(default_visibility = ["//visibility:public"])
cc_library(
- name = 'voltage_cap',
- srcs = [
- 'voltage_cap.cc',
- ],
- hdrs = [
- 'voltage_cap.h',
- ],
+ name = "voltage_cap",
+ srcs = [
+ "voltage_cap.cc",
+ ],
+ hdrs = [
+ "voltage_cap.h",
+ ],
)
cc_test(
- name = 'voltage_cap_test',
- srcs = [
- 'voltage_cap_test.cc',
- ],
- deps = [
- ':voltage_cap',
- '//aos/testing:googletest',
- '//aos/testing:test_shm',
- ],
+ name = "voltage_cap_test",
+ srcs = [
+ "voltage_cap_test.cc",
+ ],
+ deps = [
+ ":voltage_cap",
+ "//aos/testing:googletest",
+ "//aos/testing:test_shm",
+ ],
)
diff --git a/frc971/shooter_interpolation/BUILD b/frc971/shooter_interpolation/BUILD
index 3509040..cce93e1 100644
--- a/frc971/shooter_interpolation/BUILD
+++ b/frc971/shooter_interpolation/BUILD
@@ -1,21 +1,21 @@
cc_library(
- name = 'interpolation',
- hdrs = [
- 'interpolation.h',
- ],
- srcs = [
- 'interpolation.cc',
- ],
- visibility = ['//visibility:public'],
+ name = "interpolation",
+ srcs = [
+ "interpolation.cc",
+ ],
+ hdrs = [
+ "interpolation.h",
+ ],
+ visibility = ["//visibility:public"],
)
cc_test(
- name = 'interpolation_test',
- srcs = [
- 'interpolation_test.cc',
- ],
- deps = [
- ':interpolation',
- '//aos/testing:googletest',
- ]
+ name = "interpolation_test",
+ srcs = [
+ "interpolation_test.cc",
+ ],
+ deps = [
+ ":interpolation",
+ "//aos/testing:googletest",
+ ],
)