| 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 # 'vulcanize' to be install in your system. | 10 # 'vulcanize' to be install in your system. |
| 11 | 11 |
| 12 set -e | 12 set -e |
| 13 | 13 |
| 14 cd "$(dirname "$0")" | 14 cd "$(dirname "$0")" |
| 15 echo "$(dirname "$0")" |
| 15 | 16 |
| 16 rm -rf components components-chromium | 17 rm -rf components components-chromium |
| 18 # Remove everything in web-animations-js except README.chromium and OWNERS. |
| 19 find ../web-animations-js/* ! \( -name 'README.chromium' -o -name 'OWNERS' \) \
( -type f -o -type d \) -delete |
| 20 ls ../web-animations-js |
| 17 | 21 |
| 18 bower install | 22 bower install |
| 19 | 23 |
| 24 rm -rf components/web-animations-js/test |
| 25 rm -rf components/web-animations-js/node_modules |
| 26 shopt -s dotglob |
| 27 mv components/web-animations-js/* ../web-animations-js/ |
| 28 rm -rf components/web-animations-js |
| 29 mv ../web-animations-js/COPYING ../web-animations-js/LICENSE |
| 30 |
| 20 # These components are deprecated or needed only for demos. | 31 # These components are deprecated or needed only for demos. |
| 21 rm -rf components/{core-component-page,core-field,font-roboto,webcomponentsjs} | 32 rm -rf components/{core-component-page,core-field,font-roboto,webcomponentsjs} |
| 22 | 33 |
| 23 # Make checkperms.py happy. | 34 # Make checkperms.py happy. |
| 24 find components/{core-list,core-resizable} -type f -exec chmod -x {} \; | 35 find components/{core-list,core-resizable} -type f -exec chmod -x {} \; |
| 25 | 36 |
| 26 # TODO(dzhioev): remove when | 37 # TODO(dzhioev): remove when |
| 27 # https://code.google.com/p/grit-i18n/issues/detail?id=30 is fixed | 38 # https://code.google.com/p/grit-i18n/issues/detail?id=30 is fixed |
| 28 patch -p1 < chromium.patch | 39 patch -p1 < chromium.patch |
| 29 | 40 |
| 30 ./extract_inline_scripts.sh components components-chromium | 41 ./extract_inline_scripts.sh components components-chromium |
| 31 | 42 |
| OLD | NEW |