diff options
author | 2023-08-08 00:51:52 +0000 | |
---|---|---|
committer | 2023-08-08 00:51:52 +0000 | |
commit | 09f6b1390c0f11380e63fb98a8197860f04659c8 (patch) | |
tree | 269806ad81591ce21bf798e82a03606879b8cb15 /android/module.go | |
parent | 541c1cab0071574182d511449a5d960b9bde5072 (diff) | |
parent | df3ec82b62fee405137306258672899643209a37 (diff) |
Merge changes I8ca452aa,I437fc890,If9446700 into main
* changes:
Handle .proto files in different package for filegroups
Handle .proto files that end up in a different package
Allow creation of BazelTargets in a different directory
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go index b98201906..0120a544e 100644 --- a/android/module.go +++ b/android/module.go @@ -1021,6 +1021,11 @@ type CommonAttributes struct { Applicable_licenses bazel.LabelListAttribute Testonly *bool + + // Dir is neither a Soong nor Bazel target attribute + // If set, the bazel target will be created in this directory + // If unset, the bazel target will default to be created in the directory of the visited soong module + Dir *string } // constraintAttributes represents Bazel attributes pertaining to build constraints, |