| 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', | 9 # Chromium specific modifications. To launch the script you need 'bower', |
| 10 # 'crisper', and 'vulcanize' installed on your system. | 10 # 'crisper', and 'vulcanize' installed on your system. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 # Remove carriage returns to make CQ happy. | 47 # Remove carriage returns to make CQ happy. |
| 48 find components -type f \( -name \*.html -o -name \*.css -o -name \*.js\ | 48 find components -type f \( -name \*.html -o -name \*.css -o -name \*.js\ |
| 49 -o -name \*.md -o -name \*.sh -o -name \*.json -o -name \*.gitignore\ | 49 -o -name \*.md -o -name \*.sh -o -name \*.json -o -name \*.gitignore\ |
| 50 -o -name \*.bat \) -print0 | xargs -0 sed -i -e $'s/\r$//g' | 50 -o -name \*.bat \) -print0 | xargs -0 sed -i -e $'s/\r$//g' |
| 51 | 51 |
| 52 # Resolve a unicode encoding issue in dom-innerHTML.html. | 52 # Resolve a unicode encoding issue in dom-innerHTML.html. |
| 53 NBSP=$(python -c 'print u"\u00A0".encode("utf-8")') | 53 NBSP=$(python -c 'print u"\u00A0".encode("utf-8")') |
| 54 sed -i 's/['"$NBSP"']/\\u00A0/g' components/polymer/polymer-mini.html | 54 sed -i 's/['"$NBSP"']/\\u00A0/g' components/polymer/polymer-mini.html |
| 55 | 55 |
| 56 # Remove import of external resource in font-roboto (fonts.googleapis.com). |
| 57 patch -p1 < chromium.patch |
| 58 |
| 56 ./extract_inline_scripts.sh components components-chromium | 59 ./extract_inline_scripts.sh components components-chromium |
| OLD | NEW |