diff options
author | 2022-08-16 10:27:33 -0700 | |
---|---|---|
committer | 2022-08-17 10:43:13 -0700 | |
commit | d079e0b2708ce0f4cce470db929f28dd8d2b0e80 (patch) | |
tree | e8cdb4a59bd88411a262a1d91bd75def56cc4de2 /android/variable.go | |
parent | 852d0c48593fb2a17d301d7274edac907e8e194f (diff) |
Reformat build/soong for go 1.19
Test: none
Change-Id: I132368f0fcbdb5ea088b5b84dbe4ccfdd9e94cad
Diffstat (limited to 'android/variable.go')
-rw-r--r-- | android/variable.go | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/android/variable.go b/android/variable.go index 86b8c8fb1..2d7b0bf8e 100644 --- a/android/variable.go +++ b/android/variable.go @@ -702,20 +702,20 @@ func ProductVariableProperties(ctx BazelConversionPathContext) ProductConfigProp // // If the ProductConfigProperties map contains these items, as parsed from the .bp file: // -// library_linking_strategy: { -// prefer_static: { -// static_libs: [ -// "lib_a", -// "lib_b", -// ], -// }, -// conditions_default: { -// shared_libs: [ -// "lib_a", -// "lib_b", -// ], -// }, -// }, +// library_linking_strategy: { +// prefer_static: { +// static_libs: [ +// "lib_a", +// "lib_b", +// ], +// }, +// conditions_default: { +// shared_libs: [ +// "lib_a", +// "lib_b", +// ], +// }, +// }, // // Static_libs {Library_linking_strategy ANDROID prefer_static} [lib_a lib_b] // Shared_libs {Library_linking_strategy ANDROID conditions_default} [lib_a lib_b] @@ -728,13 +728,13 @@ func ProductVariableProperties(ctx BazelConversionPathContext) ProductConfigProp // instead of putting lib_a and lib_b directly into dynamic_deps without a // select: // -// dynamic_deps = select({ -// "//build/bazel/product_variables:android__library_linking_strategy__prefer_static": [], -// "//conditions:default": [ -// "//foo/bar:lib_a", -// "//foo/bar:lib_b", -// ], -// }), +// dynamic_deps = select({ +// "//build/bazel/product_variables:android__library_linking_strategy__prefer_static": [], +// "//conditions:default": [ +// "//foo/bar:lib_a", +// "//foo/bar:lib_b", +// ], +// }), func (props *ProductConfigProperties) zeroValuesForNamespacedVariables() { // A map of product config properties to the zero values of their respective // property value. |