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.
Android_boot_image_editor/avbImpl/build.gradle

23 lines
420 B
Groovy

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"
}
}
}
}