blob: 79295a2e25f6effe2f52783745f0a5d3d8334f8e [file] [log] [blame]
Steven Moreland81079f92018-07-06 16:15:53 -07001// 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}
20
21type ccProperties struct {
22 Name *string
23 Owner *string
24 Defaults []string
25 Vendor_available *bool
26 Generated_sources []string
27 Generated_headers []string
28 Shared_libs []string
29 Export_shared_lib_headers []string
30 Export_generated_headers []string
Steven Morelandc26d8142018-09-17 14:25:33 -070031 Sdk_version *string
32 Stl *string
Steven Moreland63492e62018-11-14 14:36:13 -080033 Cpp_std *string
Steven Moreland92b3a852018-12-12 13:08:49 -080034 Cflags []string
Steven Moreland81079f92018-07-06 16:15:53 -070035}
36
37type javaProperties struct {
38 Name *string
39 Owner *string
40 Defaults []string
41 Installable *bool
42 No_framework_libs *bool
43 Sdk_version *string
44 Srcs []string
45 Static_libs []string
Steven Moreland81079f92018-07-06 16:15:53 -070046}
47
48type phonyProperties struct {
49 Name *string
50 Required []string
51}