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: utils/css/css

Issue 9695048: Template parser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix GIT mixup - ugh Created 8 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
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # To pre-process CSS files, run this script with the path to a .scss file, like:
4 #
5 # $ $DART/utils/css/css foo.scss foo.css
6 #
7
8 SRCFILE=$PWD/$1
9 OUTPUT=$PWD/$2
10 if [[ $1 == $2 ]]
11 then
12 echo -e "\033[31msource file must be different then output file\033[0m"
13 exit 1
14 fi
15
16 # Path of this bash script.
17 BASE_DIR="$( cd "$( dirname "$0" )" && pwd )"
18
19 # Pre-process the file
20 $BASE_DIR/../../frog/minfrog --libdir=$BASE_DIR/../../frog/lib $BASE_DIR/tool.da rt $SRCFILE $OUTPUT
Siggi Cherem (dart-lang) 2012/03/15 01:21:25 switch to run tool.dart directly in the vm?
terry 2012/03/15 19:02:49 Done.
OLDNEW
« no previous file with comments | « frog/file_system_memory.dart ('k') | utils/css/css.dart » ('j') | utils/css/cssoptions.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698