| Index: build/android/pylib/utils/google_storage_helper.py
 | 
| diff --git a/build/android/pylib/utils/google_storage_helper.py b/build/android/pylib/utils/google_storage_helper.py
 | 
| index d8196c8f06db2da8ed85405403ed4d5dcca050c5..98f41a7fffedb90d7a7dd595d3a8a7a79a3f2241 100644
 | 
| --- a/build/android/pylib/utils/google_storage_helper.py
 | 
| +++ b/build/android/pylib/utils/google_storage_helper.py
 | 
| @@ -53,7 +53,7 @@ def upload(name, filepath, bucket, content_type=None, authenticated_link=True):
 | 
|    gs_path = 'gs://%s/%s' % (bucket, name)
 | 
|    logging.info('Uploading %s to %s', filepath, gs_path)
 | 
|  
 | 
| -  cmd = [_GSUTIL_PATH]
 | 
| +  cmd = [_GSUTIL_PATH, '-q']
 | 
|    if content_type:
 | 
|      cmd.extend(['-h', 'Content-Type:%s' % content_type])
 | 
|    cmd.extend(['cp', filepath, gs_path])
 | 
| 
 |