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

Side by Side Diff: lib/src/executable.dart

Issue 1585513002: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « lib/src/exceptions.dart ('k') | lib/src/exit_codes.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 pub.executable;
6
7 import 'dart:async'; 5 import 'dart:async';
8 import 'dart:io'; 6 import 'dart:io';
9 7
10 import 'package:barback/barback.dart'; 8 import 'package:barback/barback.dart';
11 import 'package:path/path.dart' as p; 9 import 'package:path/path.dart' as p;
12 10
13 import 'barback/asset_environment.dart'; 11 import 'barback/asset_environment.dart';
14 import 'entrypoint.dart'; 12 import 'entrypoint.dart';
15 import 'exit_codes.dart' as exit_codes; 13 import 'exit_codes.dart' as exit_codes;
16 import 'io.dart'; 14 import 'io.dart';
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 Future<int> _runCachedExecutable(Entrypoint entrypoint, String snapshotPath, 285 Future<int> _runCachedExecutable(Entrypoint entrypoint, String snapshotPath,
288 List<String> args, {bool checked: false}) { 286 List<String> args, {bool checked: false}) {
289 return runSnapshot(snapshotPath, args, 287 return runSnapshot(snapshotPath, args,
290 packagesFile: entrypoint.packagesFile, 288 packagesFile: entrypoint.packagesFile,
291 checked: checked, 289 checked: checked,
292 recompile: () { 290 recompile: () {
293 log.fine("Precompiled executable is out of date."); 291 log.fine("Precompiled executable is out of date.");
294 return entrypoint.precompileExecutables(); 292 return entrypoint.precompileExecutables();
295 }); 293 });
296 } 294 }
OLDNEW
« no previous file with comments | « lib/src/exceptions.dart ('k') | lib/src/exit_codes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698