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

Side by Side Diff: runtime/bin/vmservice/client/resources.sh

Issue 199633007: Switch to using pub build instead of custom build_.dart script (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « runtime/bin/vmservice/client/pubspec.yaml ('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
(Empty)
1 #!/bin/sh
2
3 # NOTE: You should only have to run this script if you add a new resource
4 # (html, js, image) file.
5
6 # This script generates lines for resources_sources.gypi (standalone)
7 # and devtools.gypi (Dartium) for the current deployed Observatory.
8
9 if [ ! -d deployed ]; then
10 echo "Please run inside client directory"
11 fi
12
13 PREFIX="vmservice/client"
14 echo "For resources_sources.gypi:"
15 for i in `find deployed/web/ -not -type d -not -path '*/\.*'`; do
16 echo "'$PREFIX/$i',"
17 done
18
19 PREFIX="../../../../dart/runtime/bin/vmservice/client"
20 echo "For devtools.gypi:"
21 for i in `find deployed/web/ -not -type d -not -path '*/\.*'`; do
22 echo "'$PREFIX/$i',"
23 done
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698