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

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

Issue 920223002: Replace CRLFs in Polymer source files with LFs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update reproduce.sh with literal '\r' Created 5 years, 10 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 | « third_party/polymer/README.chromium ('k') | 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 # '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 15
16 rm -rf components components-chromium 16 rm -rf components components-chromium
17 17
18 bower install 18 bower install
19 19
20 # These components are deprecated or needed only for demos. 20 # These components are deprecated or needed only for demos.
21 rm -rf components/{core-component-page,core-field,font-roboto,webcomponentsjs} 21 rm -rf components/{core-component-page,core-field,font-roboto,webcomponentsjs}
22 22
23 # Make checkperms.py happy. 23 # Make checkperms.py happy.
24 find components/{core-list,core-resizable} -type f -exec chmod -x {} \; 24 find components/{core-list,core-resizable} -type f -exec chmod -x {} \;
25 25
26 # Remove carriage returns to make CQ happy.
27 find components -type f \( -name \*.html -o -name \*.css -o -name \*.js\
28 -o -name \*.md -o -name \*.sh -o -name \*.json -o -name \*.gitignore \)\
29 -print0 | xargs -0 sed -i -e $'s/\r$//g'
30
26 # TODO(dzhioev): remove when 31 # TODO(dzhioev): remove when
27 # https://code.google.com/p/grit-i18n/issues/detail?id=30 is fixed 32 # https://code.google.com/p/grit-i18n/issues/detail?id=30 is fixed
28 patch -p1 < chromium.patch 33 patch -p1 < chromium.patch
29 34
30 ./extract_inline_scripts.sh components components-chromium 35 ./extract_inline_scripts.sh components components-chromium
31 36
OLDNEW
« no previous file with comments | « third_party/polymer/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698