diff options
| author | 2017-02-01 19:28:31 +0000 | |
|---|---|---|
| committer | 2017-02-01 19:28:31 +0000 | |
| commit | e81efc5036d15b90d38800c521354fe39ee9ee35 (patch) | |
| tree | 9978afe98ca91f1bbeed49578c8773071b702a5b | |
| parent | f9e9c5bc2e24b2b0e8c4eae0a8328f7f57035799 (diff) | |
| parent | b79d9f9d49022b1e712956635f7c5e8fa8809866 (diff) | |
Merge "Disable integer sanitization on host."
am: b79d9f9d49
Change-Id: I517a019007bcf12b0884c22234abf25482d50cca
| -rw-r--r-- | libs/input/Android.bp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libs/input/Android.bp b/libs/input/Android.bp index bd28af14fc..9485d5b0e6 100644 --- a/libs/input/Android.bp +++ b/libs/input/Android.bp @@ -28,9 +28,6 @@ cc_library { ], clang: true, - sanitize: { - misc_undefined: ["integer"], - }, shared_libs: [ "liblog", @@ -50,6 +47,10 @@ cc_library { "libutils", "libbinder", ], + + sanitize: { + misc_undefined: ["integer"], + }, }, host: { shared: { |