summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author LaMont Jones <lamontjones@google.com> 2024-10-03 19:59:41 -0700
committer LaMont Jones <lamontjones@google.com> 2024-10-04 08:07:46 -0700
commit6e34e01b5866617ab7f5126bf15cf2dc2433770a (patch)
tree7ca94641559a0bbd69e096d718242c9e6031e51f
parentadf9d108ae2d3871da331e9ed71d2f5ed01e76f6 (diff)
Add release_config_contributions module
Bug: b/370544058 Test: TH, manual Change-Id: I1c82108b0f07f67ef60487401079f2103781cd86
-rw-r--r--gms_mainline/optional/Android.bp20
-rw-r--r--gms_mainline/required/Android.bp20
-rw-r--r--gms_mainline/rkpd/Android.bp20
-rw-r--r--gms_mainline/uwb/Android.bp20
-rw-r--r--gms_mainline_go/optional/Android.bp20
-rw-r--r--gms_mainline_go/required/Android.bp20
-rw-r--r--gms_mainline_go/rkpd/Android.bp20
-rw-r--r--gms_mainline_go/uwb/Android.bp20
8 files changed, 160 insertions, 0 deletions
diff --git a/gms_mainline/optional/Android.bp b/gms_mainline/optional/Android.bp
new file mode 100644
index 00000000..5ca06cc8
--- /dev/null
+++ b/gms_mainline/optional/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_optional",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline/required/Android.bp b/gms_mainline/required/Android.bp
new file mode 100644
index 00000000..2e12203f
--- /dev/null
+++ b/gms_mainline/required/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_required",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline/rkpd/Android.bp b/gms_mainline/rkpd/Android.bp
new file mode 100644
index 00000000..98175bbc
--- /dev/null
+++ b/gms_mainline/rkpd/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_rkpd",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline/uwb/Android.bp b/gms_mainline/uwb/Android.bp
new file mode 100644
index 00000000..611c9bad
--- /dev/null
+++ b/gms_mainline/uwb/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_uwb",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline_go/optional/Android.bp b/gms_mainline_go/optional/Android.bp
new file mode 100644
index 00000000..2ff6ef38
--- /dev/null
+++ b/gms_mainline_go/optional/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_go_optional",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline_go/required/Android.bp b/gms_mainline_go/required/Android.bp
new file mode 100644
index 00000000..c63197be
--- /dev/null
+++ b/gms_mainline_go/required/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_go_required",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline_go/rkpd/Android.bp b/gms_mainline_go/rkpd/Android.bp
new file mode 100644
index 00000000..d67b1cb6
--- /dev/null
+++ b/gms_mainline_go/rkpd/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_go_rkpd",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}
diff --git a/gms_mainline_go/uwb/Android.bp b/gms_mainline_go/uwb/Android.bp
new file mode 100644
index 00000000..a11a747c
--- /dev/null
+++ b/gms_mainline_go/uwb/Android.bp
@@ -0,0 +1,20 @@
+// Copyright 2025 Google Inc. All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+release_config_contributions {
+ name: "release_config_contributions-build_release_gms_mainline_go_uwb",
+ srcs: [
+ "release_configs/*.textproto",
+ ],
+}