CameraITS: scene0/test_gyro_bias failed when running ITS

Reason:
GYRO is not supported on all Android devices.

Solution:
Add one condition to check if GYRO is supported,
and if not, skip this test case.

Bug: 117588942
Bug: 119296003

Change-Id: I448b4556611ab2e28df0edb41d8f16574ee35050
Merged-In: I448b4556611ab2e28df0edb41d8f16574ee35050
diff --git a/apps/CameraITS/tests/scene0/test_gyro_bias.py b/apps/CameraITS/tests/scene0/test_gyro_bias.py
index 86445fe..44be95f 100644
--- a/apps/CameraITS/tests/scene0/test_gyro_bias.py
+++ b/apps/CameraITS/tests/scene0/test_gyro_bias.py
@@ -39,7 +39,8 @@
     with its.device.ItsSession() as cam:
         props = cam.get_camera_properties()
         # Only run test if the appropriate caps are claimed.
-        its.caps.skip_unless(its.caps.sensor_fusion(props))
+        its.caps.skip_unless(its.caps.sensor_fusion(props) and
+            cam.get_sensors().get("gyro"))
 
         print "Collecting gyro events"
         cam.start_sensor_events()