Temporarily disabling firefox hooks on mac and win.
These need to be implemented and tested; broken in current state.
BUG=272077
TBR=kjellander@chromium.org
Review URL: https://codereview.chromium.org/117203002
git-svn-id: http://src.chromium.org/svn/trunk/deps/third_party/webrtc/webrtc.DEPS@241269 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
diff --git a/download_firefox_nightly.py b/download_firefox_nightly.py
index 93da3b8..9a1f983 100755
--- a/download_firefox_nightly.py
+++ b/download_firefox_nightly.py
@@ -52,7 +52,10 @@
print 'Downloaded %s' % firefox_archive
# Extract the archive.
+ # TODO(phoglund): implement on win/mac
if sys.platform == 'darwin':
+ print "Temporarily disabled on mac..."
+ return 0
volume = '/Volumes/Nightly'
firefox_executable = '%s/FirefoxNightly.app' % target_dir
@@ -66,6 +69,8 @@
tar_archive = tarfile.open(firefox_archive, 'r:bz2')
tar_archive.extractall(path=target_dir)
elif sys.platform == 'win32':
+ print "Temporarily disabled on win..."
+ return 0
zip_archive = zipfile.ZipFile(firefox_archive)
zip_archive.extractall(path=target_dir)
else: