]>
Commit | Line | Data |
---|---|---|
a95c632b AD |
1 | // Copyright 2017 The Android Open Source Project |
2 | ||
afaa1992 CHH |
3 | cc_defaults { |
4 | name: "e2fsprogs-defaults", | |
afaa1992 CHH |
5 | cflags: ["-Wall", "-Werror"], |
6 | target: { | |
7 | darwin: { | |
8 | // Still has unfixed/unsuppressed warnings. | |
9 | cflags: ["-Wno-error"], | |
10 | }, | |
eb5b037f EH |
11 | windows: { |
12 | cflags: [ | |
13 | "-Wno-typedef-redefinition", | |
14 | "-Wno-unused-parameter", | |
15 | "-Wno-unused-variable", | |
16 | ], | |
17 | }, | |
afaa1992 CHH |
18 | }, |
19 | } | |
20 | ||
a95c632b AD |
21 | subdirs = [ |
22 | "contrib", | |
23 | "debugfs", | |
24 | "e2fsck", | |
25 | "lib", | |
26 | "misc", | |
27 | "resize", | |
28 | ] |