e2fsprogs/Android.bp
Elliott Hughes eb5b037f98 AOSP: Turn off some more warnings on Windows.
Test: builds
Change-Id: Ieb0f34ba444f608ec3fdf89aa61a93b4ac312af4
From AOSP commit: 88a90b52f836bc4aaba231857f1e4facf0a25959

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
2019-04-22 13:35:03 -04:00

29 lines
564 B
Plaintext

// Copyright 2017 The Android Open Source Project
cc_defaults {
name: "e2fsprogs-defaults",
cflags: ["-Wall", "-Werror"],
target: {
darwin: {
// Still has unfixed/unsuppressed warnings.
cflags: ["-Wno-error"],
},
windows: {
cflags: [
"-Wno-typedef-redefinition",
"-Wno-unused-parameter",
"-Wno-unused-variable",
],
},
},
}
subdirs = [
"contrib",
"debugfs",
"e2fsck",
"lib",
"misc",
"resize",
]