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: http://src.chromium.org/svn/trunk/src/build@233587 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
kjellander@chromium.org 2013-11-07 11:59:50 +00:00
Родитель f95557606e
Коммит 15ffdc38ee
2 изменённых файлов: 1 добавлений и 9 удалений

Просмотреть файл

@ -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)
]

Просмотреть файл

@ -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).