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

Side by Side Diff: lib/config/import_dart2js.config

Issue 9865025: Revert "Removes dartc reliance on its own libraries, now can be targeted at any implementation's li… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « lib/config/import_any.config ('k') | lib/config/import_dartium.config » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # Entries in this file define how editor maps #import(...) directives
3 #
4 # A key that ends with '\:' maps an entire scheme to a directory tree
5 # (All ':' characters in the key must be escaped)
6 # For example, an entry in this file such as
7 # foo\: = /user/name/some/dir
8 # will map the following imports
9 # #import('foo:bar') --> /user/name/some/dir/bar/bar.dart
10 # #import('foo:blat.dart') --> /user/name/some/dir/blat.dart
11 # #import('foo:buzz/blue.dart') --> /user/name/some/dir/buzz/blue.dart
12 #
13 # A key that does not end with '\:' maps a single import to a single file
14 # For example, an entry in this file such as
15 # green\:light = /user/name/some/dir/mylib.dart
16 # will map only
17 # #import('green:light') --> /user/name/some/dir/mylib.dart
18 #
19 # A specific mapping (does not end with '\:') takes precedence
20 # For example, given
21 # foo\: = /user/name/some/dir
22 # foo\:bar = /user/name/another/dir/myfile.dart
23 # will map
24 # #import('foo:bar') --> /user/name/another/dir/myfile.dart
25 # #import('foo:blue') --> /user/name/some/dir/blue/blue.dart
26 #
27 # Paths that are not absolute are considered to be relative to editor installati on directory.
28 # Leading and trailing whitespace around keys and values is ignored.
29 # This file is read exactly once when editor is launched
30 #
31
32 # These copy most of the frog imports until we get the dart2js libs
33 # in the dart-sdk
34
35 dart\: = .
36 dart\:core = core/core_frog.dart
37 dart\:coreimpl = coreimpl/coreimpl_frog.dart
38 dart\:dom = dom/dom_frog.dart
39 dart\:html = html/html_frog.dart
40 dart\:isolate = isolate/isolate_leg.dart
41 dart\:uri = uri/uri.dart
42 dart\:json = json/json_frog.dart
43 dart\:utf = utf/utf.dart
OLDNEW
« no previous file with comments | « lib/config/import_any.config ('k') | lib/config/import_dartium.config » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698