2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-28 08:43:26 +00:00

In the generated repository, refer to the "parent" as @rules_foreign_cc (#161)

Fixes #160
This commit is contained in:
irengrig 2018-11-29 21:55:27 +01:00 committed by GitHub
parent d6d2f0761a
commit 59bd073a22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@
"""
load("@bazel_skylib//lib:collections.bzl", "collections")
load("@//tools/build_defs:version.bzl", "VERSION")
load("@rules_foreign_cc//tools/build_defs:version.bzl", "VERSION")
load(
":cc_toolchain_util.bzl",
"LibrariesToLinkInfo",
@ -11,9 +11,9 @@ load(
"get_env_vars",
"targets_windows",
)
load("@//tools/build_defs:detect_root.bzl", "detect_root")
load("@rules_foreign_cc//tools/build_defs:detect_root.bzl", "detect_root")
load("@foreign_cc_platform_utils//:os_info.bzl", "OSInfo")
load("@//tools/build_defs:run_shell_file_utils.bzl", "copy_directory", "fictive_file_in_genroot")
load("@rules_foreign_cc//tools/build_defs:run_shell_file_utils.bzl", "copy_directory", "fictive_file_in_genroot")
""" Dict with definitions of the context attributes, that customize cc_external_rule_impl function.
Many of the attributes have default values.

View file

@ -3,7 +3,7 @@
"""
load("@bazel_skylib//lib:collections.bzl", "collections")
load("@//tools/build_defs:version.bzl", "VERSION")
load("@rules_foreign_cc//tools/build_defs:version.bzl", "VERSION")
load(
":cc_toolchain_util.bzl",
"LibrariesToLinkInfo",
@ -11,9 +11,9 @@ load(
"get_env_vars",
"targets_windows",
)
load("@//tools/build_defs:detect_root.bzl", "detect_root")
load("@rules_foreign_cc//tools/build_defs:detect_root.bzl", "detect_root")
load("@foreign_cc_platform_utils//:os_info.bzl", "OSInfo")
load("@//tools/build_defs:run_shell_file_utils.bzl", "copy_directory", "fictive_file_in_genroot")
load("@rules_foreign_cc//tools/build_defs:run_shell_file_utils.bzl", "copy_directory", "fictive_file_in_genroot")
""" Dict with definitions of the context attributes, that customize cc_external_rule_impl function.
Many of the attributes have default values.