b6e37ee475
Now that gclient is much quieter about its output (see crbug.com/772741), these always-emitted messages make it louder than necessary. Change-Id: I864676c4ca57d4c060f7f58bc770d8d670695639 Reviewed-on: https://chromium-review.googlesource.com/731118 Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#48808}
21 lines
581 B
Python
Executable File
21 lines
581 B
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os
|
|
import re
|
|
import subprocess
|
|
|
|
GCMOLE_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
SHA1_PATH = os.path.join(GCMOLE_PATH, 'gcmole-tools.tar.gz.sha1')
|
|
|
|
if re.search(r'\bgcmole=1', os.environ.get('GYP_DEFINES', '')):
|
|
subprocess.check_call([
|
|
'download_from_google_storage',
|
|
'-b', 'chrome-v8-gcmole',
|
|
'-u', '--no_resume',
|
|
'-s', SHA1_PATH,
|
|
'--platform=linux*'
|
|
])
|