mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-23 18:14:25 +08:00
eb5b037f98
Test: builds Change-Id: Ieb0f34ba444f608ec3fdf89aa61a93b4ac312af4 From AOSP commit: 88a90b52f836bc4aaba231857f1e4facf0a25959 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
29 lines
564 B
Plaintext
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",
|
|
]
|