blob: adc9b5e8b36208f2a0b5331b0f9ffe4fda867d68 [file] [log] [blame]
Tobias Thierer064ab8e2018-02-05 16:54:27 +00001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Bob Badour3df8c8b2021-02-12 15:26:39 -080015package {
16 default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
Tobias Thierer064ab8e2018-02-05 16:54:27 +000019java_library_static {
20 name: "telephony-protos",
21 proto: {
22 type: "nano",
23 output_params: [
24 "store_unknown_fields=true",
25 "enum_style=java",
26 ],
27 },
28 srcs: ["src/**/*.proto"],
Amit Mahajan46447f32019-11-26 17:08:51 -080029 sdk_version: "system_current",
Tobias Thierer064ab8e2018-02-05 16:54:27 +000030 jarjar_rules: "jarjar-rules.txt",
Tobias Thiererf2ddc0f2018-02-05 20:54:43 +000031 // Pin java_version until jarjar is certified to support later versions. http://b/72703434
32 java_version: "1.8",
Amit Mahajan46447f32019-11-26 17:08:51 -080033}
Hyein Yu5b232b22024-06-26 07:45:54 +000034
35java_library_static {
36 name: "telephony-config-update-proto-lite",
37 proto: {
38 type: "lite",
39 },
40 srcs: ["src/**/telephony_config_update.proto"],
41 host_supported: true,
42}