diff options
author | Siarhei Vishniakou <svv@google.com> | 2021-06-03 16:38:58 +0000 |
---|---|---|
committer | Siarhei Vishniakou <svv@google.com> | 2021-06-03 18:55:24 +0000 |
commit | 8c35c57811867e6f72694e1f4bb55794a1418878 (patch) | |
tree | 30635f29ff7f1a7961a73269f6aad6b76b348f1f /input | |
parent | b098e79d834bc2a7f78c7fc2aaaf102a3bf9d966 (diff) |
Add IInputConstants dependency for Input.h
In this VTS test, we are #including InputDevice.h, which in turn
depends on Input.h.
Since we are adding a depending on IInputConstants inside Input.h,
update the makefiles here to pass the build.
Bug: 175069843
Test: m VtsHalInputClassifierV1_0TargetTest
Change-Id: I6acded6137362fb9554e7c0c74abb1e6370acff6
Diffstat (limited to 'input')
-rw-r--r-- | input/classifier/1.0/vts/functional/Android.bp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/input/classifier/1.0/vts/functional/Android.bp b/input/classifier/1.0/vts/functional/Android.bp index e170f4a613..58945d3f63 100644 --- a/input/classifier/1.0/vts/functional/Android.bp +++ b/input/classifier/1.0/vts/functional/Android.bp @@ -26,7 +26,10 @@ package { cc_test { name: "VtsHalInputClassifierV1_0TargetTest", defaults: ["VtsHalTargetTestDefaults"], - srcs: ["VtsHalInputClassifierV1_0TargetTest.cpp"], + srcs: [ + ":inputconstants_aidl", + "VtsHalInputClassifierV1_0TargetTest.cpp", + ], header_libs: ["jni_headers"], static_libs: [ "android.hardware.input.classifier@1.0", |