| load("//cc/toolchains:feature.bzl", "cc_feature") |
| load("//cc/toolchains:feature_set.bzl", "cc_feature_set") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| # All of these arguments originate from the legacy features defined in Bazel's Java code: |
| # https://github.com/bazelbuild/bazel/blob/master/src/main/java/com/google/devtools/build/lib/rules/cpp/CppActionConfigs.java |
| |
| # This feature replaces the need for action configs to list legacy features |
| # in `implies` to produce a working toolchain. The full list is the set of |
| # features that are implied (enabled) by built-in action config definitions. |
| # Note that some other legacy features are still hidden and enabled by default, |
| # and others exist that are NOT enabled at all by default. As args are built |
| # out, the `implies` entry should be removed and then moved into `args`. |
| cc_feature_set( |
| name = "experimental_replace_legacy_action_config_features", |
| all_of = [ |
| ":backfill_legacy_args", |
| "//cc/toolchains/args/archiver_flags:feature", |
| "//cc/toolchains/args/pic_flags:feature", |
| "//cc/toolchains/args/libraries_to_link:feature", |
| "//cc/toolchains/args/linker_param_file:feature", |
| "//cc/toolchains/args/preprocessor_defines:feature", |
| "//cc/toolchains/args/random_seed:feature", |
| "//cc/toolchains/args/runtime_library_search_directories:feature", |
| "//cc/toolchains/args/shared_flag:feature", |
| "//cc/toolchains/args/strip_debug_symbols:feature", |
| "//cc/toolchains/args/strip_flags:feature", |
| "//cc/toolchains/args/objc_arc_flags:feature", |
| "//cc/toolchains/args/soname_flags:feature", |
| "//cc/toolchains/args/static_libgcc:feature", |
| "//cc/toolchains/args/include_flags:feature", |
| "//cc/toolchains/args/compiler_input_flags:feature", |
| "//cc/toolchains/args/compiler_output_flags:feature", |
| "//cc/toolchains/args/fission_flags:feature", |
| "//cc/toolchains/args/link_flags:feature", |
| "//cc/toolchains/args/linkstamp_flags:feature", |
| "//cc/toolchains/args/library_search_directories:feature", |
| "//cc/toolchains/args/dependency_file:feature", |
| "//cc/toolchains/args/compile_flags:feature", # NOTE: This should come below default flags so user flags can override them |
| ], |
| ) |
| |
| cc_feature( |
| name = "backfill_legacy_args", |
| feature_name = "experimental_replace_legacy_action_config_features", |
| # TODO: Convert remaining items in this list into their actual args. |
| implies = [ |
| "//cc/toolchains/features/legacy:build_interface_libraries", |
| "//cc/toolchains/features/legacy:dynamic_library_linker_tool", |
| ], |
| visibility = ["//visibility:private"], |
| ) |