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

Side by Side Diff: utils/pub/entrypoint.dart

Issue 12782016: Switch pkg packages, pub, and dartdoc to use package: imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 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 | « utils/pub/directory_tree.dart ('k') | utils/pub/git_source.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library entrypoint; 5 library entrypoint;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import '../../pkg/pathos/lib/path.dart' as path; 9 import 'package:pathos/path.dart' as path;
10 10
11 import 'io.dart'; 11 import 'io.dart';
12 import 'lock_file.dart'; 12 import 'lock_file.dart';
13 import 'log.dart' as log; 13 import 'log.dart' as log;
14 import 'package.dart'; 14 import 'package.dart';
15 import 'pubspec.dart'; 15 import 'pubspec.dart';
16 import 'sdk.dart' as sdk; 16 import 'sdk.dart' as sdk;
17 import 'system_cache.dart'; 17 import 'system_cache.dart';
18 import 'utils.dart'; 18 import 'utils.dart';
19 import 'version.dart'; 19 import 'version.dart';
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 /// Creates a symlink to the `packages` directory in [dir]. Will replace one 296 /// Creates a symlink to the `packages` directory in [dir]. Will replace one
297 /// if already there. 297 /// if already there.
298 Future _linkSecondaryPackageDir(String dir) { 298 Future _linkSecondaryPackageDir(String dir) {
299 return defer(() { 299 return defer(() {
300 var symlink = path.join(dir, 'packages'); 300 var symlink = path.join(dir, 'packages');
301 if (entryExists(symlink)) deleteEntry(symlink); 301 if (entryExists(symlink)) deleteEntry(symlink);
302 return createSymlink(packagesDir, symlink, relative: true); 302 return createSymlink(packagesDir, symlink, relative: true);
303 }); 303 });
304 } 304 }
305 } 305 }
OLDNEW
« no previous file with comments | « utils/pub/directory_tree.dart ('k') | utils/pub/git_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698