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

Side by Side Diff: dart/tools/testing/dart/drt_updater.dart

Issue 23568002: Update checked-in binary to 0.6.21.3_r26639 (M6) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
« no previous file with comments | « dart/tools/testing/dart/co19_test.dart ('k') | dart/tools/testing/dart/http_server.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 // TODO(antonm): rename to something like test_runner_updater. 5 // TODO(antonm): rename to something like test_runner_updater.
6 6
7 library drt_updater; 7 library drt_updater;
8 8
9 import "dart:async"; 9 import "dart:async";
10 import "dart:io"; 10 import "dart:io";
11 11
12 import "test_suite.dart"; 12 import "test_suite.dart";
13 import "utils.dart" show Path;
13 14
14 class _DartiumUpdater { 15 class _DartiumUpdater {
15 String name; 16 String name;
16 String script; 17 String script;
17 String option; 18 String option;
18 19
19 bool isActive = false; 20 bool isActive = false;
20 bool updated = false; 21 bool updated = false;
21 List onUpdated; 22 List onUpdated;
22 23
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Download the default Dartium from Google Storage. 79 // Download the default Dartium from Google Storage.
79 if (_dartiumUpdater == null) { 80 if (_dartiumUpdater == null) {
80 _dartiumUpdater = new _DartiumUpdater('Dartium Chrome', 'get_archive.py', 81 _dartiumUpdater = new _DartiumUpdater('Dartium Chrome', 'get_archive.py',
81 'dartium'); 82 'dartium');
82 } 83 }
83 return _dartiumUpdater; 84 return _dartiumUpdater;
84 } else { 85 } else {
85 return null; 86 return null;
86 } 87 }
87 } 88 }
OLDNEW
« no previous file with comments | « dart/tools/testing/dart/co19_test.dart ('k') | dart/tools/testing/dart/http_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698