Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 | |
| OLD | NEW |