1// Copyright (C) 2017 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 15package aidl 16 17type nameProperties struct { 18 Name *string 19} 20type staticLib struct { 21 Whole_static_libs []string 22} 23 24type sharedLib struct { 25 Shared_libs []string 26 Export_shared_lib_headers []string 27} 28type ccProperties struct { 29 Name *string 30 Owner *string 31 Defaults []string 32 Vendor_available *bool 33 Host_supported *bool 34 Generated_sources []string 35 Generated_headers []string 36 Shared sharedLib 37 Static staticLib 38 Static_libs []string 39 Shared_libs []string 40 Export_shared_lib_headers []string 41 Export_generated_headers []string 42 Header_libs []string 43 Sdk_version *string 44 Stl *string 45 Cpp_std *string 46 Cflags []string 47 Stem *string 48 Apex_available []string 49 Min_sdk_version *string 50} 51 52type javaProperties struct { 53 Name *string 54 Owner *string 55 Defaults []string 56 Installable *bool 57 Sdk_version *string 58 Platform_apis *bool 59 Srcs []string 60 Static_libs []string 61 Apex_available []string 62 Min_sdk_version *string 63} 64 65type phonyProperties struct { 66 Name *string 67 Required []string 68} 69