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

Side by Side Diff: tool/build_sdk.sh

Issue 1528613004: First cut of mini dart:html. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Delete non html file Created 5 years 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
1 #!/bin/bash 1 #!/bin/bash
2 set -e 2 set -e
3 # switch to the root directory of dev_compiler 3 # switch to the root directory of dev_compiler
4 cd $( dirname "${BASH_SOURCE[0]}" )/.. 4 cd $( dirname "${BASH_SOURCE[0]}" )/..
5 5
6 echo "*** Patching SDK" 6 echo "*** Patching SDK"
7 dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk 7 dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk
8 8
9 echo "*** Compiling SDK to JavaScript" 9 echo "*** Compiling SDK to JavaScript"
10 10
11 # TODO(ochafik): Re-enable named params destructuring when Atom supports it 11 # TODO(ochafik): Re-enable named params destructuring when Atom supports it
12 # (see https://github.com/dart-lang/dev_compiler/issues/396) 12 # (see https://github.com/dart-lang/dev_compiler/issues/396)
13 dart -c bin/dartdevc.dart --no-source-maps --arrow-fn-bind-this --sdk-check \ 13 dart -c bin/dartdevc.dart --no-source-maps --arrow-fn-bind-this --sdk-check \
14 --force-compile -l warning --dart-sdk tool/generated_sdk -o lib/runtime/ \ 14 --force-compile -l warning --dart-sdk tool/generated_sdk -o lib/runtime/ \
15 --no-destructure-named-params \ 15 --no-destructure-named-params \
16 "$@" \ 16 "$@" \
17 dart:js dart:mirrors \ 17 dart:js dart:mirrors \
18 dart:js dart:mirrors dart:html \
Jennifer Messerly 2015/12/15 19:17:12 note: it's harmless but you shouldn't need to list
vsm 2015/12/15 21:05:27 Just a bug on my part. Fixed. :-)
18 > tool/sdk_expected_errors.txt || true 19 > tool/sdk_expected_errors.txt || true
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698