| Index: content/test/gpu/gpu_tests/gpu_process.py
|
| diff --git a/content/test/gpu/gpu_tests/gpu_process.py b/content/test/gpu/gpu_tests/gpu_process.py
|
| index db5cc02fcba93df7f261d5a36588656c11d7e542..ac47083ab41bf6f2cf3a9824f0b62e30df6e5920 100644
|
| --- a/content/test/gpu/gpu_tests/gpu_process.py
|
| +++ b/content/test/gpu/gpu_tests/gpu_process.py
|
| @@ -55,7 +55,10 @@ class GpuProcess(gpu_test_base.TestBase):
|
| return expectations.GpuProcessExpectations()
|
|
|
| def CreateStorySet(self, options):
|
| - story_set = page_sets.GpuProcessTestsStorySet(self.GetExpectations())
|
| + browser_type = options.browser_options.browser_type
|
| + is_platform_android = browser_type.startswith('android')
|
| + story_set = page_sets.GpuProcessTestsStorySet(self.GetExpectations(),
|
| + is_platform_android)
|
| for page in story_set:
|
| page.script_to_evaluate_on_commit = test_harness_script
|
| return story_set
|
|
|