1/* 2 * Copyright (C) 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17package { 18 default_applicable_licenses: ["Android-Apache-2.0"], 19} 20 21python_binary_host { 22 name: "merge_csv", 23 main: "merge_csv.py", 24 srcs: ["merge_csv.py"], 25 version: { 26 py2: { 27 enabled: false, 28 }, 29 py3: { 30 enabled: true, 31 embedded_launcher: true, 32 }, 33 }, 34} 35 36python_binary_host { 37 name: "generate_hiddenapi_lists", 38 main: "generate_hiddenapi_lists.py", 39 srcs: ["generate_hiddenapi_lists.py"], 40 version: { 41 py2: { 42 enabled: false, 43 }, 44 py3: { 45 enabled: true, 46 embedded_launcher: true, 47 }, 48 }, 49} 50 51python_binary_host { 52 name: "verify_overlaps", 53 main: "verify_overlaps.py", 54 srcs: ["verify_overlaps.py"], 55 version: { 56 py2: { 57 enabled: false, 58 }, 59 py3: { 60 enabled: true, 61 embedded_launcher: true, 62 }, 63 }, 64} 65