Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module(name="exaudfclient", version = "1.0")

bazel_dep(name = "exaudfclient_base", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.2.22")
#For now, the Bazel Modul "exaudfclient_base" is stored in subdirectory "base".
#Later we might fetch it via Http or Git (after splitting up script-languages repository)
local_path_override(module_name="exaudfclient_base", path="base")
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ exports_files(["filter_swig_code.py", "build_integrated.py",
"replace_swig_import_helper.py"])

load("//:variables.bzl", "VM_ENABLED_DEFINES")
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")

config_setting(
name = "benchmark",
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module(name="exaudfclient_base", version = "1.0")
bazel_dep(name = "rules_cc", version = "0.2.22")

bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "googletest", version = "1.15.0")
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/exa_udfclient_binary_common/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")

genrule(
name = "exaudflib_output_path_header",
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/exaudflib/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package(default_visibility = ["//visibility:public"])
exports_files(["exascript.i"])

load("//:variables.bzl", "VM_ENABLED_DEFINES")
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "script_data_transfer_objects",
Expand Down
4 changes: 3 additions & 1 deletion udf-runner-cpp/v1/base/exaudflib/test/BUILD
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
load("@rules_cc//cc:defs.bzl", "cc_test")

cc_test(
name = "exaudflib-test",
srcs = ["script_data_transfer_objects_test.cpp"],
deps = [
"//exaudflib:script_data_transfer_objects",
"@googletest//:gtest_main",
],
)
)
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/script_options_parser/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "exception",
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/script_options_parser/ctpg/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "script_option_lines_parser_ctpg",
Expand Down
4 changes: 3 additions & 1 deletion udf-runner-cpp/v1/base/script_options_parser/ctpg/test/BUILD
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
load("@rules_cc//cc:defs.bzl", "cc_test")

cc_test(
name = "script-options-ctpg-parser-test",
srcs = ["script_option_lines_test.cpp"],
deps = [
"//script_options_parser/ctpg:script_option_lines_parser_ctpg",
"@googletest//:gtest_main",
],
)
)
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/script_options_parser/legacy/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "script_option_lines_parser_legacy",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
load("@rules_cc//cc:defs.bzl", "cc_test")

cc_test(
name = "script-options-legacy-parser-test",
srcs = ["script_option_lines_test.cpp"],
deps = [
"//script_options_parser/legacy:script_option_lines_parser_legacy",
"@googletest//:gtest_main",
],
)
)
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/swig_factory/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")


cc_library(
Expand Down
1 change: 1 addition & 0 deletions udf-runner-cpp/v1/base/utils/BUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

package(default_visibility = ["//visibility:public"])
load("@rules_cc//cc:defs.bzl", "cc_library")

cc_library(
name = "utils",
Expand Down