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

Side by Side Diff: samples/isolate_html/deploy.sh

Issue 23868034: Remove spawnDomFunction from dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « samples/isolate_html/app.yaml ('k') | samples/isolate_html/isolate_sample.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file.
4
5 # Copies files into directory structure needed for appengine.
6
7 OUT_DIR="../../out/"
8 DEPLOY_DIR="${OUT_DIR}isolate_deploy_dir/"
9 RESOURCES_DIR="${DEPLOY_DIR}resources/"
10
11 echo "deploying to ${DEPLOY_DIR}"
12
13 set -x
14 mkdir -p $RESOURCES_DIR
15 mkdir -p ${RESOURCES_DIR}samples/isolate
16 cp ${OUT_DIR}/Debug_dartc/obj.target/geni/samples/isolate/isolate_sample.app/sam ples/isolate/isolate_sample.app.js ${RESOURCES_DIR}/samples/isolate/isolate_samp le.js
17
18 cp -r ../../base ${RESOURCES_DIR}
19 cp -r ../../dom ${RESOURCES_DIR}
20 cp -r ../../observable ${RESOURCES_DIR}
21 cp -r ../../util ${RESOURCES_DIR}
22 cp -r ../../samples/isolate ${RESOURCES_DIR}samples/
23 cp app.yaml ${DEPLOY_DIR}
24 cp main.py ${DEPLOY_DIR}
OLDNEW
« no previous file with comments | « samples/isolate_html/app.yaml ('k') | samples/isolate_html/isolate_sample.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698