summaryrefslogtreecommitdiff
path: root/toxcore
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-06-04 22:34:01 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-06-09 21:21:39 +0000
commitb1efa147c0d22306abe23642df1bb970090c2f2c (patch)
treefb6f129aa8fa84a22312b884b5d48e75600822a4 /toxcore
parentcf9caa069a13774080a67c00a9ebdd1b51bec687 (diff)
Sort bazel build file according to buildifier standard.
Diffstat (limited to 'toxcore')
-rw-r--r--toxcore/BUILD.bazel10
1 files changed, 5 insertions, 5 deletions
diff --git a/toxcore/BUILD.bazel b/toxcore/BUILD.bazel
index 1889a702..b22f9b9e 100644
--- a/toxcore/BUILD.bazel
+++ b/toxcore/BUILD.bazel
@@ -123,16 +123,16 @@ cc_library(
123 "TCP_connection.c", 123 "TCP_connection.c",
124 "TCP_server.c", 124 "TCP_server.c",
125 ], 125 ],
126 copts = select({
127 "//tools/config:freebsd": [],
128 "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
129 "//tools/config:osx": [],
130 }),
131 hdrs = [ 126 hdrs = [
132 "TCP_client.h", 127 "TCP_client.h",
133 "TCP_connection.h", 128 "TCP_connection.h",
134 "TCP_server.h", 129 "TCP_server.h",
135 ], 130 ],
131 copts = select({
132 "//tools/config:freebsd": [],
133 "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
134 "//tools/config:osx": [],
135 }),
136 deps = [ 136 deps = [
137 ":crypto_core", 137 ":crypto_core",
138 ":list", 138 ":list",