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

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

Issue 1870853003: Vulcanize settings (hacky and dirty, don't use) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git squash commit. Created 4 years, 5 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
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 if [[ ! -z "${new}${deleted}" ]]; then 97 if [[ ! -z "${new}${deleted}" ]]; then
98 echo 98 echo
99 fi 99 fi
100 100
101 echo 'Creating a summary of components...' 101 echo 'Creating a summary of components...'
102 python create_components_summary.py > components_summary.txt 102 python create_components_summary.py > components_summary.txt
103 103
104 echo 'Creating GYP files for interfaces and externs...' 104 echo 'Creating GYP files for interfaces and externs...'
105 ./generate_gyp.sh 105 ./generate_gyp.sh
106 106
107 echo 'Vulcanizing dependent UIs (i.e. downloads)...' 107 echo 'Vulcanizing dependent UIs (downloads and settings)...'
108 python ../../../chrome/browser/resources/md_downloads/vulcanize.py 108 python ../../../chrome/browser/resources/md_downloads/vulcanize.py
109 # TODO
110 python ../../../chrome/browser/resources/settings/vulcanize.py linux
109 111
110 popd > /dev/null 112 popd > /dev/null
111 113
112 echo 'Searching for unused elements...' 114 echo 'Searching for unused elements...'
113 "$(dirname "$0")"/find_unused_elements.py 115 "$(dirname "$0")"/find_unused_elements.py
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698