diff options
author | Chih-Hung Hsieh <chh@google.com> | 2017-10-03 09:57:55 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2017-10-13 16:25:16 -0700 |
commit | c7edf078f92c7ce083f8c243a79f8aecdfff4ac1 (patch) | |
tree | d7816094d61913df8ee8c17e60763ccd050c4631 /cmds | |
parent | 26817938f6966928488e92de73359c3887006642 (diff) |
Use -Werror in frameworks/base
* Fix unused variable and return value warnings.
Bug: 66996870
Test: build with WITH_TIDY=1
Change-Id: I890e65a20848d00559ba5a4f9691be1347b456af
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/am/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds/am/Android.bp b/cmds/am/Android.bp index 7eb4edfecbf9..bb16df1d159d 100644 --- a/cmds/am/Android.bp +++ b/cmds/am/Android.bp @@ -4,6 +4,7 @@ cc_library_host_static { name: "libinstrumentation", srcs: ["**/*.proto"], + cflags: ["-Wall", "-Werror"], proto: { type: "full", export_proto_headers: true, |