blob: 349beea1588a6de58e53f37ecec13d3455ed5073 [file] [log] [blame]
Steven Morelandd56e5bb2017-07-18 22:04:16 -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 hidl
16
17type nameProperties struct {
18 Name *string
19}
20
21type fileGroupProperties struct {
Steven Moreland89a9ebb2017-12-04 10:18:00 -080022 Name *string
23 Owner *string
24 Srcs []string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070025}
26
Steven Morelandd56e5bb2017-07-18 22:04:16 -070027type ccProperties struct {
28 Name *string
Steven Moreland89a9ebb2017-12-04 10:18:00 -080029 Owner *string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070030 Defaults []string
31 Vendor_available *bool
Jerry Zhangf2a93962018-05-30 17:16:05 -070032 Recovery_available *bool
Steven Morelandd56e5bb2017-07-18 22:04:16 -070033 Generated_sources []string
34 Generated_headers []string
Steven Morelandffa25282017-11-13 14:23:25 -080035 Group_static_libs *bool
Steven Morelandd56e5bb2017-07-18 22:04:16 -070036 Shared_libs []string
Steven Morelandffa25282017-11-13 14:23:25 -080037 Static_libs []string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070038 Export_shared_lib_headers []string
Steven Morelandffa25282017-11-13 14:23:25 -080039 Export_static_lib_headers []string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070040 Export_generated_headers []string
Jiyong Parkd26759f2018-04-09 12:22:18 +090041 Double_loadable *bool
Steven Morelandeaba9232019-01-16 17:55:05 -080042 Cflags []string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070043}
44
45type javaProperties struct {
46 Name *string
Steven Moreland89a9ebb2017-12-04 10:18:00 -080047 Owner *string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070048 Defaults []string
49 No_framework_libs *bool
Colin Crossf5536c32018-06-26 23:29:10 -070050 Installable *bool
Steven Morelandfcfbeaf2018-01-29 19:34:52 -080051 Sdk_version *string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070052 Srcs []string
53 Libs []string
Steven Moreland6132a8c2018-02-02 15:02:56 -080054 Static_libs []string
Steven Morelandd56e5bb2017-07-18 22:04:16 -070055}