From 6e0ac337c979af420bef197f2a9e2bde5e65d0fc Mon Sep 17 00:00:00 2001 From: iphydf Date: Sun, 28 Jan 2018 15:17:34 +0000 Subject: Avoid clashes with "build" directories on case-insensitive file systems. --- testing/BUILD | 71 ----------------------------------------------------- testing/BUILD.bazel | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 testing/BUILD create mode 100644 testing/BUILD.bazel (limited to 'testing') diff --git a/testing/BUILD b/testing/BUILD deleted file mode 100644 index 3c8f8293..00000000 --- a/testing/BUILD +++ /dev/null @@ -1,71 +0,0 @@ -load("//tools:no_undefined.bzl", "cc_library") - -cc_library( - name = "misc_tools", - hdrs = [ - "misc_tools.c", - ], - visibility = ["//c-toxcore:__subpackages__"], -) - -cc_binary( - name = "DHT_test", - srcs = ["DHT_test.c"], - deps = [ - ":misc_tools", - "//c-toxcore/toxcore", - ], -) - -cc_binary( - name = "Messenger_test", - srcs = ["Messenger_test.c"], - deps = [ - ":misc_tools", - "//c-toxcore/toxcore", - ], -) - -cc_binary( - name = "av_test", - srcs = ["av_test.c"], - linkopts = [ - "-lopencv_highgui", - "-lopencv_core", - ], - deps = [ - "//c-toxcore/toxav", - "//c-toxcore/toxav:monolith", - "//c-toxcore/toxcore", - "@portaudio", - "@sndfile", - ], -) - -cc_binary( - name = "irc_syncbot", - srcs = ["irc_syncbot.c"], - deps = [ - ":misc_tools", - "//c-toxcore/toxcore", - ], -) - -cc_binary( - name = "tox_shell", - srcs = ["tox_shell.c"], - linkopts = ["-lutil"], - deps = [ - ":misc_tools", - "//c-toxcore/toxcore", - ], -) - -cc_binary( - name = "tox_sync", - srcs = ["tox_sync.c"], - deps = [ - ":misc_tools", - "//c-toxcore/toxcore", - ], -) diff --git a/testing/BUILD.bazel b/testing/BUILD.bazel new file mode 100644 index 00000000..3c8f8293 --- /dev/null +++ b/testing/BUILD.bazel @@ -0,0 +1,71 @@ +load("//tools:no_undefined.bzl", "cc_library") + +cc_library( + name = "misc_tools", + hdrs = [ + "misc_tools.c", + ], + visibility = ["//c-toxcore:__subpackages__"], +) + +cc_binary( + name = "DHT_test", + srcs = ["DHT_test.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "Messenger_test", + srcs = ["Messenger_test.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "av_test", + srcs = ["av_test.c"], + linkopts = [ + "-lopencv_highgui", + "-lopencv_core", + ], + deps = [ + "//c-toxcore/toxav", + "//c-toxcore/toxav:monolith", + "//c-toxcore/toxcore", + "@portaudio", + "@sndfile", + ], +) + +cc_binary( + name = "irc_syncbot", + srcs = ["irc_syncbot.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "tox_shell", + srcs = ["tox_shell.c"], + linkopts = ["-lutil"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) + +cc_binary( + name = "tox_sync", + srcs = ["tox_sync.c"], + deps = [ + ":misc_tools", + "//c-toxcore/toxcore", + ], +) -- cgit v1.2.3