From 509724f0931a84db5ab4f47c40e98e3b36cdba7b Mon Sep 17 00:00:00 2001 From: Siarhei Vishniakou Date: Wed, 16 Jun 2021 04:09:35 +0000 Subject: Avoid aidl usage on mac builds We do not have libbinder on mac, so that rules out using aidl files for mac builds. To unbreak sdk_mac build targets, just use constant values directly on mac instead of trying to use IInputConstants. Bug: 152399927 Test: forrest Change-Id: I21697ec02dbb215edd89d2f6849c9147f490af99 --- include/input/Input.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/input') diff --git a/include/input/Input.h b/include/input/Input.h index 7d936baf7a..e8678d27c3 100644 --- a/include/input/Input.h +++ b/include/input/Input.h @@ -24,7 +24,9 @@ */ #include +#ifdef __linux__ #include +#endif #include #include #include @@ -220,12 +222,16 @@ enum { POLICY_FLAG_GESTURE = 0x00000008, POLICY_FLAG_RAW_MASK = 0x0000ffff, - +#ifdef __linux__ POLICY_FLAG_INPUTFILTER_TRUSTED = android::os::IInputConstants::POLICY_FLAG_INPUTFILTER_TRUSTED, POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY = android::os::IInputConstants::POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY, +#else + POLICY_FLAG_INPUTFILTER_TRUSTED = 0x10000, + POLICY_FLAG_INJECTED_FROM_ACCESSIBILITY = 0x20000, +#endif /* These flags are set by the input dispatcher. */ // Indicates that the input event was injected. -- cgit v1.2.3-59-g8ed1b