diff options
author | 2023-11-07 15:13:22 -0800 | |
---|---|---|
committer | 2023-11-07 15:36:00 -0800 | |
commit | 0f2621c068d5b4d32138effd54f8fa25f740e30b (patch) | |
tree | 8e9e0a063ab6c61ece25985b645d9288f7e95454 /release_config_map.mk | |
parent | 18733abe7ff635f8f5240eb8fb019dcbedcd0ff6 (diff) |
Rename bzl files to scl
These files don't have anything to do with bazel, they just use starlark as a configuration
language. Bazel recently introduced the scl file extension to use for this format, which doesn't
have any bazel-specific symbols. Use that extension for our pure starlark files as well.
Bug: 309686282
Test: Presubmits
Change-Id: I80fecb2ee981f0d0a38daabe077cdcd0cedc99f2
Diffstat (limited to 'release_config_map.mk')
-rw-r--r-- | release_config_map.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/release_config_map.mk b/release_config_map.mk index 544add47..ec354ee3 100644 --- a/release_config_map.mk +++ b/release_config_map.mk @@ -14,15 +14,15 @@ # FLAG_DECLARATION_FILES gives the path(s) of flag declaration files that # should be included in the build. -FLAG_DECLARATION_FILES := build/release/build_flags.bzl +FLAG_DECLARATION_FILES := build/release/build_flags.scl # Attach the flag value definitions to the various release configurations. -$(call declare-release-config, next, build/release/build_config/next.bzl) -$(call declare-release-config, trunk, build/release/build_config/trunk.bzl) -$(call declare-release-config, trunk_food, build/release/build_config/trunk_food.bzl) -$(call declare-release-config, trunk_staging, build/release/build_config/trunk_staging.bzl) +$(call declare-release-config, next, build/release/build_config/next.scl) +$(call declare-release-config, trunk, build/release/build_config/trunk.scl) +$(call declare-release-config, trunk_food, build/release/build_config/trunk_food.scl) +$(call declare-release-config, trunk_staging, build/release/build_config/trunk_staging.scl) # Temporary, until we remove the old "staging" configs -$(call declare-release-config, staging, build/release/build_config/trunk_staging.bzl) +$(call declare-release-config, staging, build/release/build_config/trunk_staging.scl) |