7a091dcfca
The biggest changes are to the examples, but there's a small tweak to test_suite.dart as well, so it can load the HTML files. For now, we only test the development loop (content_shell+Dart VM). I'm working on changes to enable us to test the deploy story with dart2js. R=kustermann@google.com, sigmund@google.com Review URL: https://codereview.chromium.org//23539003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@26943 260f80e4-7a28-3924-810f-c04153c831b5
16 lines
534 B
Dart
Executable File
16 lines
534 B
Dart
Executable File
#!/usr/bin/env dart
|
|
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/** Build logic that lets the Dart editor build examples in the background. */
|
|
library build;
|
|
import 'package:polymer/component_build.dart';
|
|
import 'dart:io';
|
|
|
|
void main() {
|
|
build(new Options().arguments, [
|
|
'example/component/news/web/index.html',
|
|
'example/scoped_style/index.html']);
|
|
}
|