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

Unified Diff: pkg/shadow_dom/tool/build.sh

Issue 158083002: introduce web_components pkg for consolidated polyfills (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: pkg/shadow_dom/tool/build.sh
diff --git a/pkg/shadow_dom/tool/build.sh b/pkg/shadow_dom/tool/build.sh
deleted file mode 100755
index 44d8ec747714722c7bafb540aafffcfcf86ffe63..0000000000000000000000000000000000000000
--- a/pkg/shadow_dom/tool/build.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-# Usage: call directly in the commandline as test/run.sh ensuring that you have
-# both 'dart' and 'content_shell' in your path. Filter tests by passing a
-# pattern as an argument to this script.
-
-# bail on error
-set -e
-
-DIR=$( cd $( dirname "${BASH_SOURCE[0]}" ) && pwd )
-pushd $DIR > /dev/null
-
-POLYMER_REMOTE=https://github.com/Polymer
-POLYMER_DIR=../../../third_party/polymer
-
-NEWLINE=$'\n'
-REVISIONS=""
-for NAME in ShadowDOM observe-js WeakMap platform-dev; do
- GIT_REMOTE="$POLYMER_REMOTE/$NAME.git"
- GIT_DIR="$POLYMER_DIR/$NAME"
- echo "*** Syncing $GIT_DIR from $GIT_REMOTE"
- if [ -d "$GIT_DIR" ]; then
- pushd $GIT_DIR > /dev/null
- git remote set-url origin $GIT_REMOTE
- git pull
- popd
- else
- git clone $GIT_REMOTE $GIT_DIR
- fi
- pushd $GIT_DIR > /dev/null
- REVISIONS="$REVISIONS $NEWLINE $NAME is at revision `git rev-parse HEAD`"
- popd
-done
-
-echo '*** Installing NPM prerequisites'
-npm install
-
-echo '*** Running grunt'
-grunt
-
-echo "*** Saving REVISIONS file"
-echo "$REVISIONS" > ../REVISIONS

Powered by Google App Engine
This is Rietveld 408576698