Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/polymer/v1_0/reproduce.sh

Issue 1855673002: Re-vulcanize the downloads page on each Polymer roll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@revulcanize-downloads
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 2
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Reproduces the content of 'components' and 'components-chromium' using the 7 # Reproduces the content of 'components' and 'components-chromium' using the
8 # list of dependencies from 'bower.json'. Downloads needed packages and makes 8 # list of dependencies from 'bower.json'. Downloads needed packages and makes
9 # Chromium specific modifications. To launch the script you need 'bower' and 9 # Chromium specific modifications. To launch the script you need 'bower' and
10 # 'crisper' installed on your system. 10 # 'crisper' installed on your system.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 if [[ ! -z "${deleted}" ]]; then 90 if [[ ! -z "${deleted}" ]]; then
91 echo 91 echo
92 echo 'These files appear to have been removed:' 92 echo 'These files appear to have been removed:'
93 echo "${deleted}" | sed 's/^/ /' 93 echo "${deleted}" | sed 's/^/ /'
94 fi 94 fi
95 95
96 if [[ ! -z "${new}${deleted}" ]]; then 96 if [[ ! -z "${new}${deleted}" ]]; then
97 echo 97 echo
98 fi 98 fi
99 99
100 echo 'Creating a summary of components...'
michaelpg 2016/04/02 03:07:28 wut
100 python create_components_summary.py > components_summary.txt 101 python create_components_summary.py > components_summary.txt
101 102
103 echo 'Creating GYP files for interfaces and externs...'
michaelpg 2016/04/02 03:07:28 no
102 ./generate_gyp.sh 104 ./generate_gyp.sh
105
106 echo 'Vulcanizing dependent UIs (i.e. downloads)...'
michaelpg 2016/04/02 03:07:28 stahp
107 python ../../../chrome/browser/resources/md_downloads/vulcanize.py
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698