diff --git a/build_tools/python/e2e_test_framework/device_specs/device_collections.py b/build_tools/python/e2e_test_framework/device_specs/device_collections.py index aaaff2d3b21f..9ca488631e83 100644 --- a/build_tools/python/e2e_test_framework/device_specs/device_collections.py +++ b/build_tools/python/e2e_test_framework/device_specs/device_collections.py @@ -49,7 +49,6 @@ def query_device_specs( # Pixel 4 pixel_4_specs.LITTLE_CORES, pixel_4_specs.BIG_CORES, - pixel_4_specs.GPU, # Pixel 6 Pro pixel_6_pro_specs.LITTLE_CORES, pixel_6_pro_specs.BIG_CORES, diff --git a/build_tools/python/e2e_test_framework/device_specs/pixel_4_specs.py b/build_tools/python/e2e_test_framework/device_specs/pixel_4_specs.py index c3c5fc2b6c46..529c145c4f03 100644 --- a/build_tools/python/e2e_test_framework/device_specs/pixel_4_specs.py +++ b/build_tools/python/e2e_test_framework/device_specs/pixel_4_specs.py @@ -25,9 +25,3 @@ host_environment=common_definitions.HostEnvironment.ANDROID_ARMV8_2_A, device_parameters=[device_parameters.ARM_LITTLE_CORES], tags=["little-core"]) -GPU = common_definitions.DeviceSpec.build( - id=unique_ids.DEVICE_SPEC_MOBILE_PIXEL_4 + "-gpu", - device_name=DEVICE_NAME, - architecture=common_definitions.DeviceArchitecture.QUALCOMM_ADRENO, - host_environment=common_definitions.HostEnvironment.ANDROID_ARMV8_2_A, - tags=["gpu"])