Tobias Thierer | 064ab8e | 2018-02-05 16:54:27 +0000 | [diff] [blame] | 1 | // 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 Badour | 3df8c8b | 2021-02-12 15:26:39 -0800 | [diff] [blame^] | 15 | package { |
| 16 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 17 | } |
| 18 | |
Tobias Thierer | 064ab8e | 2018-02-05 16:54:27 +0000 | [diff] [blame] | 19 | java_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 Mahajan | 46447f3 | 2019-11-26 17:08:51 -0800 | [diff] [blame] | 29 | sdk_version: "system_current", |
Tobias Thierer | 064ab8e | 2018-02-05 16:54:27 +0000 | [diff] [blame] | 30 | jarjar_rules: "jarjar-rules.txt", |
Tobias Thierer | f2ddc0f | 2018-02-05 20:54:43 +0000 | [diff] [blame] | 31 | // Pin java_version until jarjar is certified to support later versions. http://b/72703434 |
| 32 | java_version: "1.8", |
Amit Mahajan | 46447f3 | 2019-11-26 17:08:51 -0800 | [diff] [blame] | 33 | } |