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: build/gen_html_setters.sh

Issue 11315020: Add attribute information table so we generate correct setters. (Closed) Base URL: https://github.com/dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 1 month 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
OLDNEW
(Empty)
1 #!/bin/bash
2 set -e
3
4 DIR=$( cd $( dirname "${BASH_SOURCE[0]}" ) && pwd )
5
6 if [[ ($DART_SDK == "") ]]; then
7 echo 'DART_SDK not set, using `which dart` to guess path'
8 export DART_SDK=$( cd $( dirname `which dart` )/.. && pwd )
9 echo "Found SDK at $DART_SDK"
10 fi
11
12 echo "library compile_mirrors; export '$DART_SDK/pkg/dartdoc/lib/mirrors.dart';" > $DIR/compile_mirrors.dart
13 dart --checked $DIR/gen_html_setters.dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698