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

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: Rebased 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
« no previous file with comments | « build/all.gyp ('k') | build/android/buildbot/bb_run_bot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 09292ce2b66108cc8ac3c5b1da10072abfa0d55f..5439f767e5fadec07974f4e4a07f0b0344c31050 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', 'sync',
'telemetry_perf_unittests', 'ui', 'unit', 'webkit',
- 'webkit_layout', 'webrtc_chromium', 'webrtc_native'])
+ 'webkit_layout'])
RunCmd = bb_utils.RunCmd
@@ -498,14 +498,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')
@@ -553,8 +545,6 @@ def GetTestStepCmds():
('unit', RunUnitTests),
('webkit', RunWebkitTests),
('webkit_layout', RunWebkitLayoutTests),
- ('webrtc_chromium', RunWebRTCChromiumTests),
- ('webrtc_native', RunWebRTCNativeTests),
]
« no previous file with comments | « 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