summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorkjellander@chromium.org <kjellander@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 11:59:50 +0000
committerkjellander@chromium.org <kjellander@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 11:59:50 +0000
commit9d7dc97f787a785965ee81d486fb23f984a020c3 (patch)
tree1fbe25777c4bb63234012e036048141cfe2df0da /build
parent2fee587449f8c6a42184bc056852dcd6606cad51 (diff)
downloadchromium_src-9d7dc97f787a785965ee81d486fb23f984a020c3.zip
chromium_src-9d7dc97f787a785965ee81d486fb23f984a020c3.tar.gz
chromium_src-9d7dc97f787a785965ee81d486fb23f984a020c3.tar.bz2
Remove call to update_resources.py for WebRTC
This script is about to be removed in favor of using download_from_google_storage.py in depot tools for the download instead (based on .sha1 files). When https://codereview.chromium.org/60513012/ is landed and the builders are updated to actually execute the hooks (https://codereview.chromium.org/59793009) the resource files will be downloaded using that instead. Even if executing the hooks means a bit of extra execution time for the build, this approach is simpler and means less maintenance. TEST=none BUG=webrtc:2294 NOTRY=True TBR=navabi@chromium.org Review URL: https://codereview.chromium.org/62273004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-xbuild/android/buildbot/bb_host_steps.py7
-rwxr-xr-xbuild/android/buildbot/bb_run_bot.py3
2 files changed, 1 insertions, 9 deletions
diff --git a/build/android/buildbot/bb_host_steps.py b/build/android/buildbot/bb_host_steps.py
index d1e9e54..cf506ae 100755
--- a/build/android/buildbot/bb_host_steps.py
+++ b/build/android/buildbot/bb_host_steps.py
@@ -105,19 +105,12 @@ def BisectPerfRegression(_):
'-w', os.path.join(constants.DIR_SOURCE_ROOT, os.pardir)])
-def DownloadWebRTCResources(_):
- bb_annotations.PrintNamedStep('download_resources')
- RunCmd([SrcPath('third_party', 'webrtc', 'tools', 'update_resources.py'),
- '-p', '../../../'], halt_on_failure=True)
-
-
def GetHostStepCmds():
return [
('compile', Compile),
('extract_build', ExtractBuild),
('check_webview_licenses', CheckWebViewLicenses),
('bisect_perf_regression', BisectPerfRegression),
- ('download_webrtc_resources', DownloadWebRTCResources),
('findbugs', FindBugs),
('zip_build', ZipBuild)
]
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
index 12328a1..1d874b7 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -178,8 +178,7 @@ def GetBotStepMap():
extra_gyp='include_tests=1 enable_tracing=1')),
B('webrtc-chromium-tests', H(std_test_steps),
T(['webrtc_chromium'], [flakiness_server])),
- B('webrtc-native-tests',
- H(['download_webrtc_resources'] + std_test_steps),
+ B('webrtc-native-tests', H(std_test_steps),
T(['webrtc_native'], [flakiness_server])),
# Generic builder config (for substring match).