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 15python_defaults { 16 name: "tools_default", 17 version: { 18 py2: { 19 enabled: true, 20 }, 21 py3: { 22 enabled: false, 23 }, 24 }, 25} 26 27python_binary_host { 28 name: "buildPolicyCriterionTypes.py", 29 main: "buildPolicyCriterionTypes.py", 30 srcs: [ 31 "buildPolicyCriterionTypes.py", 32 ], 33 defaults: ["tools_default"], 34} 35 36python_binary_host { 37 name: "domainGeneratorPolicy.py", 38 main: "domainGeneratorPolicy.py", 39 srcs: [ 40 "domainGeneratorPolicy.py", 41 ], 42 defaults: ["tools_default"], 43 libs: [ 44 "EddParser.py", 45 "hostConfig.py", 46 "PFWScriptGenerator.py", 47 ], 48 required: [ 49 "domainGeneratorConnector", 50 ], 51} 52 53python_binary_host { 54 name: "buildStrategiesStructureFile.py", 55 main: "buildStrategiesStructureFile.py", 56 srcs: [ 57 "buildStrategiesStructureFile.py", 58 ], 59 defaults: ["tools_default"], 60} 61