diff options
Diffstat (limited to 'android/bazel.go')
-rw-r--r-- | android/bazel.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/bazel.go b/android/bazel.go index 58d9d87db..a9ba79044 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -71,7 +71,7 @@ type BazelConversionStatus struct { MissingDeps []string `blueprint:"mutated"` } -type bazelModuleProperties struct { +type BazelModuleProperties struct { // The label of the Bazel target replacing this Soong module. When run in conversion mode, this // will import the handcrafted build target into the autogenerated file. Note: this may result in // a conflict due to duplicate targets if bp2build_available is also set. @@ -96,7 +96,7 @@ type bazelModuleProperties struct { type properties struct { // In "Bazel mixed build" mode, this represents the Bazel target replacing // this Soong module. - Bazel_module bazelModuleProperties + Bazel_module BazelModuleProperties } // namespacedVariableProperties is a map from a string representing a Soong |