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

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

Issue 10910013: Remove instances of dart:dom_deprecated from outside of lib/html and lib/dom. Part 1 of many. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Entries in this file define how editor maps #import(...) directives 2 # Entries in this file define how editor maps #import(...) directives
3 # 3 #
4 # A key that ends with '\:' maps an entire scheme to a directory tree 4 # A key that ends with '\:' maps an entire scheme to a directory tree
5 # (All ':' characters in the key must be escaped) 5 # (All ':' characters in the key must be escaped)
6 # For example, an entry in this file such as 6 # For example, an entry in this file such as
7 # foo\: = /user/name/some/dir 7 # foo\: = /user/name/some/dir
8 # will map the following imports 8 # will map the following imports
9 # #import('foo:bar') --> /user/name/some/dir/bar/bar.dart 9 # #import('foo:bar') --> /user/name/some/dir/bar/bar.dart
10 # #import('foo:blat.dart') --> /user/name/some/dir/blat.dart 10 # #import('foo:blat.dart') --> /user/name/some/dir/blat.dart
(...skipping 14 matching lines...) Expand all
25 # #import('foo:blue') --> /user/name/some/dir/blue/blue.dart 25 # #import('foo:blue') --> /user/name/some/dir/blue/blue.dart
26 # 26 #
27 # Paths that are not absolute are considered to be relative to editor installati on directory. 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. 28 # Leading and trailing whitespace around keys and values is ignored.
29 # This file is read exactly once when editor is launched 29 # This file is read exactly once when editor is launched
30 # 30 #
31 31
32 dart\: = . 32 dart\: = .
33 dart\:core = core/core.dart 33 dart\:core = core/core.dart
34 dart\:coreimpl = coreimpl/coreimpl.dart 34 dart\:coreimpl = coreimpl/coreimpl.dart
35 dart\:dom_deprecated = dom/dom_dart2js.dart
36 dart\:html = html/html_dartium.dart 35 dart\:html = html/html_dartium.dart
37 dart\:io = io/io_runtime.dart 36 dart\:io = io/io_runtime.dart
38 dart\:isolate = isolate/isolate.dart 37 dart\:isolate = isolate/isolate.dart
39 dart\:math = math/math.dart 38 dart\:math = math/math.dart
40 dart\:mirrors = mirrors/mirrors.dart 39 dart\:mirrors = mirrors/mirrors.dart
41 dart\:nativewrappers = html/nativewrappers.dart 40 dart\:nativewrappers = html/nativewrappers.dart
42 dart\:web = web/web.dart 41 dart\:web = web/web.dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698