1// Copyright (C) 2020 Google LLC 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 15python_binary_host { 16 name: "update_apn", 17 main: "python/update_apn.py", 18 srcs: [ 19 "python/update_apn.py", 20 "proto/*.proto", 21 ], 22 proto: { 23 canonical_path_from_root: false 24 }, 25 libs: [ 26 "libprotobuf-python", 27 "py-six", 28 ], 29} 30 31python_binary_host { 32 name: "update_carrier_data", 33 main: "python/update_carrier_data.py", 34 srcs: [ 35 "python/compare.py", 36 "python/update_carrier_data.py", 37 "proto/*.proto", 38 ], 39 proto: { 40 canonical_path_from_root: false 41 }, 42 libs: [ 43 "libprotobuf-python", 44 "py-six", 45 ], 46} 47 48java_binary_host { 49 name: "CarrierConfigConverterV2", 50 srcs: [ 51 "java/CarrierConfigConverterV2.java", 52 "java/CarrierProtoUtils.java", 53 "proto/*.proto", 54 ":telephonyprovider-proto-sources", 55 ], 56 java_resources: [ 57 ":telephonyprovider-assets-carrierlist", 58 ], 59 main_class: "com.google.carrier.CarrierConfigConverterV2", 60 proto: { 61 type: "full", 62 canonical_path_from_root: false, 63 }, 64 plugins: [ 65 "dagger2-auto-value", 66 ], 67 static_libs: [ 68 "dagger2-auto-value", 69 "guava-21.0", 70 "jcommander", 71 "libprotobuf-java-full", 72 ], 73} 74 75java_binary_host { 76 name: "GenCarrierList", 77 srcs: [ 78 "java/CarrierProtoUtils.java", 79 "java/GenCarrierList.java", 80 "proto/*.proto", 81 ], 82 main_class: "com.google.carrier.GenCarrierList", 83 proto: { 84 type: "full", 85 canonical_path_from_root: false, 86 }, 87 static_libs: [ 88 "guava-21.0", 89 "jcommander", 90 "libprotobuf-java-full", 91 ], 92} 93 94java_binary_host { 95 name: "GenDeviceSettings", 96 srcs: [ 97 "java/CarrierProtoUtils.java", 98 "java/GenDeviceSettings.java", 99 "proto/*.proto", 100 ], 101 main_class: "com.google.carrier.GenDeviceSettings", 102 proto: { 103 type: "full", 104 canonical_path_from_root: false, 105 }, 106 static_libs: [ 107 "guava-21.0", 108 "jcommander", 109 "libprotobuf-java-full", 110 ], 111} 112