blob: 13f1705a487a6582d91f1245823e802ac0ed3d59 [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}
Jeongik Chae072e6c2019-02-22 18:36:33 +090020type staticLib struct {
21 Whole_static_libs []string
22}
Steven Moreland81079f92018-07-06 16:15:53 -070023
Jeongik Chae072e6c2019-02-22 18:36:33 +090024type sharedLib struct {
25 Shared_libs []string
26 Export_shared_lib_headers []string
27}
Steven Moreland81079f92018-07-06 16:15:53 -070028type ccProperties struct {
29 Name *string
30 Owner *string
31 Defaults []string
32 Vendor_available *bool
33 Generated_sources []string
34 Generated_headers []string
Jeongik Chae072e6c2019-02-22 18:36:33 +090035 Shared sharedLib
36 Static staticLib
Steven Moreland81079f92018-07-06 16:15:53 -070037 Shared_libs []string
38 Export_shared_lib_headers []string
39 Export_generated_headers []string
Steven Morelandc26d8142018-09-17 14:25:33 -070040 Sdk_version *string
41 Stl *string
Steven Moreland63492e62018-11-14 14:36:13 -080042 Cpp_std *string
Steven Moreland92b3a852018-12-12 13:08:49 -080043 Cflags []string
Steven Moreland81079f92018-07-06 16:15:53 -070044}
45
46type javaProperties struct {
47 Name *string
48 Owner *string
49 Defaults []string
50 Installable *bool
51 No_framework_libs *bool
52 Sdk_version *string
53 Srcs []string
54 Static_libs []string
Steven Moreland81079f92018-07-06 16:15:53 -070055}
56
57type phonyProperties struct {
58 Name *string
59 Required []string
60}