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

Unified Diff: third_party/polymer/reproduce.sh

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/polymer/extract_inline_scripts.sh ('k') | third_party/polymer/vulcanize_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/polymer/reproduce.sh
diff --git a/third_party/polymer/reproduce.sh b/third_party/polymer/reproduce.sh
deleted file mode 100755
index ec1ebff9d0a98e3084aefb8dcd1cc87701faa23f..0000000000000000000000000000000000000000
--- a/third_party/polymer/reproduce.sh
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/bash
-
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Reproduces the content of 'components' and 'components-chromium' using the
-# list of dependencies from 'bower.json'. Downloads needed packages and makes
-# Chromium specific modifications. To launch the script you need 'bower' and
-# 'vulcanize' to be install in your system.
-
-set -e
-
-cd "$(dirname "$0")"
-
-rm -rf components components-chromium
-rm -rf ../web-animations-js/sources
-
-bower install
-
-rm -rf components/web-animations-js/{test,node_modules}
-# TODO(jlklein): Remove when
-# https://github.com/web-animations/web-animations-next/pull/289 is released
-# and the version of web-animations-js is bumped in bower.json.
-rm components/web-animations-js/.travis-setup.sh
-
-mv components/web-animations-js ../web-animations-js/sources
-cp ../web-animations-js/sources/COPYING ../web-animations-js/LICENSE
-
-# These components are deprecated or needed only for demos.
-rm -rf components/{core-component-page,core-field,font-roboto,webcomponentsjs}
-
-# Make checkperms.py happy.
-find components/{core-list,core-resizable} -type f -exec chmod -x {} \;
-
-# Remove carriage returns to make CQ happy.
-find components -type f \( -name \*.html -o -name \*.css -o -name \*.js\
- -o -name \*.md -o -name \*.sh -o -name \*.json -o -name \*.gitignore \)\
- -print0 | xargs -0 sed -i -e $'s/\r$//g'
-
-# TODO(dzhioev): remove when
-# https://code.google.com/p/grit-i18n/issues/detail?id=30 is fixed
-patch -p1 < chromium.patch
-
-./extract_inline_scripts.sh components components-chromium
-
« no previous file with comments | « third_party/polymer/extract_inline_scripts.sh ('k') | third_party/polymer/vulcanize_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698