diff options
author | 2024-11-19 19:44:12 +0000 | |
---|---|---|
committer | 2024-11-19 19:44:12 +0000 | |
commit | bf3242d2d3363a7649948d5f28c06277607b26af (patch) | |
tree | e92f81229921df640169516615b18dd5d044260f /android/config.go | |
parent | 68382198f52355d8dfa52ffb29f17aeabf555ae1 (diff) | |
parent | eacbdfcadc2e0e996cfa447c54c35f4a87a5dd19 (diff) |
Merge "Introduce a java_system_features_srcs wrapper for codegen" into main
Diffstat (limited to 'android/config.go')
-rw-r--r-- | android/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index 94285f822..dff3ea5bd 100644 --- a/android/config.go +++ b/android/config.go @@ -285,6 +285,10 @@ func (c Config) ReleaseCreateAconfigStorageFile() bool { return c.config.productVariables.GetBuildFlagBool("RELEASE_CREATE_ACONFIG_STORAGE_FILE") } +func (c Config) ReleaseUseSystemFeatureBuildFlags() bool { + return c.config.productVariables.GetBuildFlagBool("RELEASE_USE_SYSTEM_FEATURE_BUILD_FLAGS") +} + // A DeviceConfig object represents the configuration for a particular device // being built. For now there will only be one of these, but in the future there // may be multiple devices being built. |