Sort bazel build file according to buildifier standard.

This commit is contained in:
iphydf 2018-06-04 22:34:01 +00:00
parent cf9caa069a
commit b1efa147c0
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -123,16 +123,16 @@ cc_library(
"TCP_connection.c", "TCP_connection.c",
"TCP_server.c", "TCP_server.c",
], ],
copts = select({
"//tools/config:freebsd": [],
"//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
"//tools/config:osx": [],
}),
hdrs = [ hdrs = [
"TCP_client.h", "TCP_client.h",
"TCP_connection.h", "TCP_connection.h",
"TCP_server.h", "TCP_server.h",
], ],
copts = select({
"//tools/config:freebsd": [],
"//tools/config:linux": ["-DTCP_SERVER_USE_EPOLL=1"],
"//tools/config:osx": [],
}),
deps = [ deps = [
":crypto_core", ":crypto_core",
":list", ":list",