You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
420 B
Groovy
23 lines
420 B
Groovy
6 years ago
|
apply plugin: "c"
|
||
|
apply plugin: "cpp"
|
||
|
apply plugin: "cpp-unit-test"
|
||
|
|
||
|
model {
|
||
|
buildTypes {
|
||
|
release
|
||
|
}
|
||
|
|
||
|
components {
|
||
|
libavbx(NativeLibrarySpec) {
|
||
|
sources {
|
||
|
cpp {
|
||
|
lib project: ":aosp:libavb", library: "avb"
|
||
|
}
|
||
|
}
|
||
|
binaries.all {
|
||
|
cCompiler.args << "-Wall" << "-g"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|