aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/cpp/util/BUILD6
-rw-r--r--src/main/native/BUILD9
2 files changed, 15 insertions, 0 deletions
diff --git a/src/main/cpp/util/BUILD b/src/main/cpp/util/BUILD
index 6bd3b44488..b595ccb571 100644
--- a/src/main/cpp/util/BUILD
+++ b/src/main/cpp/util/BUILD
@@ -146,3 +146,9 @@ filegroup(
srcs = glob(["**"]),
visibility = ["//src/main/cpp:__pkg__"],
)
+
+filegroup(
+ name = "embedded_tools",
+ srcs = glob(["*.cc"]) + glob(["*.h"]) + ["BUILD"],
+ visibility = ["//visibility:public"],
+)
diff --git a/src/main/native/BUILD b/src/main/native/BUILD
index 653b595ad2..3799a109cf 100644
--- a/src/main/native/BUILD
+++ b/src/main/native/BUILD
@@ -108,3 +108,12 @@ filegroup(
srcs = glob(["**"]),
visibility = ["//src:__pkg__"],
)
+
+# TODO(laszlocsomor): move the common parts needed both by the Windows JNI lib
+# and the Bazel client into a separate library, and only copy those to the
+# embedded tools folder.
+filegroup(
+ name = "embedded_tools",
+ srcs = glob(["*.cc"]) + glob(["*.h"]) + ["BUILD"],
+ visibility = ["//visibility:public"],
+)