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

Side by Side Diff: pubspec.yaml

Issue 1355893003: Rewire DDC to use the analyzer task model (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 3 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
OLDNEW
1 name: dev_compiler 1 name: dev_compiler
2 version: 0.1.7 2 version: 0.1.7
3 description: > 3 description: >
4 Experimental Dart to JavaScript compiler designed to create idiomatic, 4 Experimental Dart to JavaScript compiler designed to create idiomatic,
5 readable JavaScript output. 5 readable JavaScript output.
6 author: Dart Dev Compiler team <dev-compiler@dartlang.org> 6 author: Dart Dev Compiler team <dev-compiler@dartlang.org>
7 homepage: https://github.com/dart-lang/dev_compiler 7 homepage: https://github.com/dart-lang/dev_compiler
8 dependencies: 8 dependencies:
9 analyzer: ^0.26.0-alpha.0 9 analyzer: ^0.26.0-alpha.0
10 args: ^0.13.0 10 args: ^0.13.0
(...skipping 17 matching lines...) Expand all
28 environment: 28 environment:
29 sdk: ">=1.12.0-dev.1.1 <2.0.0" 29 sdk: ">=1.12.0-dev.1.1 <2.0.0"
30 executables: 30 executables:
31 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use 31 # Similar to "analyzer.dart" and its command line "dartanalyzer" we use
32 # "dartdevc". 32 # "dartdevc".
33 dartdevc: dartdevc 33 dartdevc: dartdevc
34 dev_compiler: 34 dev_compiler:
35 # Similar to dartdevc, but runs the (single) entry point with iojs (requires 35 # Similar to dartdevc, but runs the (single) entry point with iojs (requires
36 # a very recent iojs next-nightly version). 36 # a very recent iojs next-nightly version).
37 dartdevrun: devrun 37 dartdevrun: devrun
38 dependency_overrides:
39 analyzer:
40 path: ../dart/sdk/pkg/analyzer/
vsm 2015/09/18 22:57:45 This needs to be replaced with a new analyzer vers
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698