diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-15T15·11+0100 |
commit | 128875b501bc2989617ae553317b80faa556d752 (patch) | |
tree | 9b32d12123801179ebe900980556486ad4803482 /third_party/bazel/rules_haskell/haskell/private/version_macros.bzl | |
parent | a20daf87265a62b494d67f86d4a5199f14394973 (diff) |
chore: Remove remaining Bazel-related files r/31
Diffstat (limited to 'third_party/bazel/rules_haskell/haskell/private/version_macros.bzl')
-rw-r--r-- | third_party/bazel/rules_haskell/haskell/private/version_macros.bzl | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/third_party/bazel/rules_haskell/haskell/private/version_macros.bzl b/third_party/bazel/rules_haskell/haskell/private/version_macros.bzl deleted file mode 100644 index 35f913f26b01..000000000000 --- a/third_party/bazel/rules_haskell/haskell/private/version_macros.bzl +++ /dev/null @@ -1,47 +0,0 @@ -load(":private/set.bzl", "set") - -def generate_version_macros(ctx, name, version): - """Generate a version macros header file. - - Args: - ctx: Rule context. Needs to define a _version_macros executable attribute. - name: The package name. - version: The package version. - - Returns: - Version macros header File. - """ - version_macros_file = ctx.actions.declare_file("{}_version_macros.h".format(name)) - ctx.actions.run_shell( - inputs = [ctx.executable._version_macros], - outputs = [version_macros_file], - command = """ - "$1" "$2" "$3" > "$4" - """, - arguments = [ - ctx.executable._version_macros.path, - name, - version, - version_macros_file.path, - ], - ) - return version_macros_file - -def version_macro_includes(hs_info): - """Generate a list of version macro header includes. - - Args: - hs_info: HaskellInfo provider. - - Returns: - (files, flags): - files: Set of version macros header files. - flags: List of C preprocessor flags to include version macros. - """ - files = hs_info.version_macros - flags = [ - f - for include in set.to_list(files) - for f in ["-include", include.path] - ] - return (files, flags) |