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 hidl 16 17type nameProperties struct { 18 Name *string 19} 20 21type fileGroupProperties struct { 22 Name *string 23 Owner *string 24 Srcs []string 25} 26 27type ccProperties struct { 28 Name *string 29 Owner *string 30 Defaults []string 31 Vendor_available *bool 32 Recovery_available *bool 33 Generated_sources []string 34 Generated_headers []string 35 Group_static_libs *bool 36 Shared_libs []string 37 Static_libs []string 38 Export_shared_lib_headers []string 39 Export_static_lib_headers []string 40 Export_generated_headers []string 41 Double_loadable *bool 42 Cflags []string 43} 44 45type javaProperties struct { 46 Name *string 47 Owner *string 48 Defaults []string 49 No_framework_libs *bool 50 Installable *bool 51 Sdk_version *string 52 Srcs []string 53 Libs []string 54 Static_libs []string 55} 56