From b1efa147c0d22306abe23642df1bb970090c2f2c Mon Sep 17 00:00:00 2001 From: iphydf Date: Mon, 4 Jun 2018 22:34:01 +0000 Subject: [PATCH] Sort bazel build file according to buildifier standard. --- toxcore/BUILD.bazel | 10 +++++----- 1 file 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( "TCP_connection.c", "TCP_server.c", ], - copts = select({ - "//tools/config:freebsd": [], - "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"], - "//tools/config:osx": [], - }), hdrs = [ "TCP_client.h", "TCP_connection.h", "TCP_server.h", ], + copts = select({ + "//tools/config:freebsd": [], + "//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"], + "//tools/config:osx": [], + }), deps = [ ":crypto_core", ":list",