forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Review URL: https://codereview.chromium.org//640393002
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Don’t commit the following directories created by pub. | ||
.pub | ||
build/ | ||
packages | ||
|
||
# Or the files created by dart2js. | ||
*.dart.js | ||
*.dart.precompiled.js | ||
*.js_ | ||
*.js.deps | ||
*.js.map | ||
*.sw? | ||
.idea/ | ||
.pub/ | ||
|
||
# Include when developing application packages. | ||
pubspec.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright (c) 2014, 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. | ||
|
||
# Don't run any test-like files that show up in packages directories. It | ||
# shouldn't be necessary to run "pub install" in these packages, but if you do | ||
# it shouldn't break the tests. | ||
*/packages/*/*: Skip | ||
*/*/packages/*/*: Skip | ||
*/*/*/packages/*/*: Skip | ||
*/*/*/*/packages/*/*: Skip | ||
*/*/*/*/*/packages/*/*: Skip | ||
|
||
build/*: Skip # nothing requires pub-build | ||
|
||
[ $runtime == vm && $mode == debug] | ||
test/tokenizer_test: Skip # Times out | ||
|
||
[ $runtime == vm && ( $arch == simarm || $arch == simmips ) ] | ||
test/tokenizer_test: Pass, Slow | ||
|
||
[ $browser ] | ||
test/parser_test: Skip | ||
test/tokenizer_test: Skip | ||
test/selectors/*: Skip | ||
|
||
[ $runtime == vm ] | ||
test/browser/browser_test: Skip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CODE_REVIEW_SERVER: http://codereview.chromium.org/ | ||
VIEW_VC: https://github.com/dart-lang/core-elements/commit/ | ||
CC_LIST: reviews@dartlang.org |