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 a63661a8142c4da560dd933211f6e1543421739e..59c6c9d2040f28992599f3611fe2328d7543751c 100755 |
--- a/build/android/buildbot/bb_device_steps.py |
+++ b/build/android/buildbot/bb_device_steps.py |
@@ -73,7 +73,7 @@ INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [ |
]) |
VALID_TESTS = set(['chromedriver', 'gpu', 'ui', 'unit', 'webkit', |
- 'webkit_layout', 'webrtc']) |
+ 'webkit_layout', 'webrtc_chromium', 'webrtc_native']) |
RunCmd = bb_utils.RunCmd |
@@ -419,8 +419,12 @@ def RunWebkitTests(options): |
RunWebkitLint(options.target) |
-def RunWebRTCTests(options): |
- RunTestSuites(options, gtest_config.WEBRTC_TEST_SUITES) |
+def RunWebRTCChromiumTests(options): |
+ RunTestSuites(options, gtest_config.WEBRTC_CHROMIUM_TEST_SUITES) |
+ |
+ |
+def RunWebRTCNativeTests(options): |
+ RunTestSuites(options, gtest_config.WEBRTC_NATIVE_TEST_SUITES) |
def RunGPUTests(options): |
@@ -448,7 +452,8 @@ def GetTestStepCmds(): |
('ui', RunInstrumentationTests), |
('webkit', RunWebkitTests), |
('webkit_layout', RunWebkitLayoutTests), |
- ('webrtc', RunWebRTCTests), |
+ ('webrtc_chromium', RunWebRTCChromiumTests), |
+ ('webrtc_native', RunWebRTCNativeTests), |
] |