-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
184 lines (175 loc) · 7.23 KB
/
Android.bp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package {
default_visibility: [":__subpackages__"],
default_applicable_licenses: ["system_bt_license"],
}
// Added automatically by a large-scale-change that took the approach of
// 'apply every license found to every target'. While this makes sure we respect
// every license restriction, it may not be entirely correct.
//
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
//
// Please consider splitting the single license below into multiple licenses,
// taking care not to lose any license_kind information, and overriding the
// default license using the 'licenses: [...]' property on targets as needed.
//
// For unused files, consider creating a 'fileGroup' with "//visibility:private"
// to attach the license to, and including a comment whether the files may be
// used in the current project.
// See: http://go/android-license-faq
license {
name: "system_bt_license",
visibility: [":__subpackages__"],
license_kinds: [
"SPDX-license-identifier-Apache-2.0",
"SPDX-license-identifier-BSD",
"SPDX-license-identifier-MIT",
"legacy_unencumbered",
],
license_text: [
"NOTICE",
],
}
filegroup {
name: "BluetoothTestConfigTemplate",
srcs: [
"AndroidTestTemplate.xml",
],
}
// This default contains properties that should be common to all the cc targets
// developed by the Bluetooth team.
//
// Be careful when adding new properties here:
// - The option should not impact negatively any target, for example "-Wno-*"
// options should not be added here but instead on every targets needing
// them to avoid allowing adding new warnings in targets that didn't contained
// them (you can use the bpmodify tool to ease the work of adding this warning
// everywhere) and also allows cleaning them one at a time.
//
// - The option should apply to all the c/c++ code developed by the Bluetooth team:
// test, tools, fuzzers, etc, not only production targets, if you need to add an option
// for a subset of Bluetooth cc targets you should look at the defaults including this
// defaults like "fluoride_defaults" and "gd_defaults".
//
// - Try to keep the name as precise as possible to document to the dependent of what
// this default contains. This also means that if you add a new option that isn't
// documented by the name of this default, rename it.
//
// - Try avoiding adding option that would not fit "future" targets, for example dependencies,
// even if every modules of Bluetooth depends on a specific dependency it should be left out
// from this default to not push it for future targets that might not need it.
cc_defaults {
name: "bluetooth_cflags",
cflags: [
"-Wall",
"-Werror",
"-Wextra",
// Override global.go that demote the error to a warning
"-Werror=format",
"-Werror=reorder-init-list",
],
c_std: "c99",
cpp_std: "c++20",
}
java_defaults {
name: "bluetooth_errorprone_rules",
errorprone: {
enabled: true,
javacflags: [
"-Xep:AlmostJavadoc:ERROR",
"-Xep:AlreadyChecked:ERROR",
"-Xep:BadImport:ERROR",
"-Xep:CatchAndPrintStackTrace:ERROR",
"-Xep:CatchFail:ERROR",
"-Xep:CheckReturnValue:ERROR",
"-Xep:ClassCanBeStatic:ERROR",
"-Xep:DateFormatConstant:ERROR",
"-Xep:DirectInvocationOnMock:ERROR",
"-Xep:EmptyBlockTag:ERROR",
"-Xep:EmptyCatch:ERROR",
"-Xep:EqualsGetClass:ERROR",
"-Xep:EqualsHashCode:ERROR",
"-Xep:EqualsIncompatibleType:ERROR",
"-Xep:FallThrough:ERROR",
"-Xep:Finalize:ERROR",
"-Xep:FutureReturnValueIgnored:ERROR",
"-Xep:GuardedBy:ERROR",
"-Xep:HidingField:ERROR",
"-Xep:InconsistentHashCode:ERROR",
"-Xep:InlineFormatString:ERROR",
"-Xep:InlineMeInliner:ERROR",
"-Xep:InvalidBlockTag:ERROR",
"-Xep:InvalidInlineTag:ERROR",
"-Xep:InvalidParam:ERROR",
"-Xep:JavaUtilDate:ERROR",
"-Xep:JdkObsolete:ERROR",
"-Xep:LockOnNonEnclosingClassLiteral:ERROR",
"-Xep:LongFloatConversion:ERROR",
"-Xep:LoopOverCharArray:ERROR",
"-Xep:MissingCasesInEnumSwitch:ERROR",
"-Xep:MixedMutabilityReturnType:ERROR",
"-Xep:MockNotUsedInProduction:ERROR",
"-Xep:ModifiedButNotUsed:ERROR",
"-Xep:ModifyCollectionInEnhancedForLoop:ERROR",
"-Xep:NarrowCalculation:ERROR",
"-Xep:NarrowingCompoundAssignment:ERROR",
"-Xep:NonApiType:ERROR",
"-Xep:NonAtomicVolatileUpdate:ERROR",
"-Xep:NonCanonicalType:ERROR",
"-Xep:NotJavadoc:ERROR",
"-Xep:ObjectEqualsForPrimitives:ERROR",
"-Xep:OperatorPrecedence:ERROR",
"-Xep:ReferenceEquality:ERROR",
"-Xep:ReturnAtTheEndOfVoidFunction:ERROR",
"-Xep:StaticAssignmentInConstructor:ERROR",
"-Xep:StaticGuardedByInstance:ERROR",
"-Xep:StringCaseLocaleUsage:ERROR",
"-Xep:StringCharset:ERROR",
"-Xep:SynchronizeOnNonFinalField:ERROR",
"-Xep:ToStringReturnsNull:ERROR",
"-Xep:TruthConstantAsserts:ERROR",
"-Xep:TruthIncompatibleType:ERROR",
"-Xep:UndefinedEquals:ERROR",
"-Xep:UnnecessaryAssignment:ERROR",
"-Xep:UnnecessaryAsync:ERROR",
"-Xep:UnnecessaryStringBuilder:ERROR",
"-Xep:UnrecognisedJavadocTag:ERROR",
"-Xep:UnusedMethod:ERROR",
"-Xep:UnusedNestedClass:ERROR",
"-Xep:UnusedVariable:ERROR",
"-Xep:WaitNotInLoop:ERROR",
"-Xep:WakelockReleasedDangerously:ERROR",
// Exclude generated files
"-XepExcludedPaths:.*/srcjars/.*",
// The @InlineMe annotation is not available
// "-Xep:InlineMeSuggester:OFF",
],
},
}
java_defaults {
name: "bluetooth_framework_errorprone_rules",
defaults: ["bluetooth_errorprone_rules"],
plugins: [
"error_prone_android_framework",
],
errorprone: {
javacflags: [
"-Xep:AndroidFrameworkBinderIdentity:ERROR",
"-Xep:AndroidFrameworkBluetoothPermission:ERROR",
"-Xep:AndroidFrameworkCompatChange:ERROR",
"-Xep:AndroidFrameworkEfficientParcelable:ERROR",
"-Xep:AndroidFrameworkEfficientStrings:ERROR",
"-Xep:AndroidFrameworkPendingIntentMutability:ERROR",
"-Xep:AndroidFrameworkRequiresPermission:ERROR",
"-Xep:AndroidFrameworkRethrowFromSystem:ERROR",
"-Xep:AndroidFrameworkTargetSdk:ERROR",
"-Xep:AndroidHideInComments:ERROR",
// After fixing this errorprone, we decided to not merge the change.
// It is not very readable and the benefits are minimal when looking
// at the size of the maps used in the Bluetooth application.
// See https://r.android.com/3200511
"-Xep:AndroidFrameworkEfficientCollections:OFF",
// Does not look pertinent in our situation
"-Xep:AndroidFrameworkEfficientXml:OFF",
],
},
}