Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2876)

Unified Diff: build/android/buildbot/bb_device_steps.py

Issue 500423004: Refactor/cleanup WebRTC-specific Andorid glue code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 8ff5a20ad63ac52922295728e8baaff4d1c3e8d6..35c825c3187bb0b77cf3493f976b4c5349a2d674 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -76,7 +76,7 @@ INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [
VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', 'mojo',
'telemetry_perf_unittests', 'ui', 'unit', 'webkit',
- 'webkit_layout', 'webrtc_chromium', 'webrtc_native'])
+ 'webkit_layout'])
RunCmd = bb_utils.RunCmd
@@ -489,14 +489,6 @@ def RunWebkitTests(options):
RunWebkitLint(options.target)
-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):
revision = _GetRevision(options)
builder_name = options.build_properties.get('buildername', 'noname')
@@ -543,8 +535,6 @@ def GetTestStepCmds():
('ui', RunInstrumentationTests),
('webkit', RunWebkitTests),
('webkit_layout', RunWebkitLayoutTests),
- ('webrtc_chromium', RunWebRTCChromiumTests),
kjellander_chromium 2014/08/27 14:09:58 None of these are used anymore. The tests executed
- ('webrtc_native', RunWebRTCNativeTests),
]
« build/all.gyp ('K') | « build/all.gyp ('k') | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698