Index: build/android/buildbot/bb_device_steps.py |
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py |
index 82765f744109c52ad305dab7ef0e55fd4ff29af7..c558080b51fbaab5fb188442e90d907ac6e9767a 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -95,9 +95,9 @@ INSTALLABLE_PACKAGES = dict((package.name, package) for package in ( |
'org.chromium.chromedriver_webview_shell')])) |
VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'components_browsertests', |
- 'gpu', 'python_unittests', 'telemetry_unittests', |
- 'telemetry_perf_unittests', 'ui', 'unit', 'webkit', |
- 'webkit_layout']) |
+ 'gfx_unittests', 'gpu', 'python_unittests', |
+ 'telemetry_unittests', 'telemetry_perf_unittests', 'ui', |
+ 'unit', 'webkit', 'webkit_layout']) |
RunCmd = bb_utils.RunCmd |
@@ -571,6 +571,8 @@ def GetTestStepCmds(): |
('chrome_proxy', RunChromeProxyTests), |
('components_browsertests', |
lambda options: RunTestSuites(options, ['components_browsertests'])), |
+ ('gfx_unittests', |
+ lambda options: RunTestSuites(options, ['gfx_unittests'])), |
('gpu', RunGPUTests), |
('python_unittests', RunPythonUnitTests), |
('telemetry_unittests', RunTelemetryUnitTests), |