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

Side by Side Diff: sdk/lib/crypto/crypto_sources.gypi

Issue 12321082: - Properly load the core libraries as libraries and not as scripts. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 # 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 # This file contains all sources for the dart:crypto library. 5 # This file contains all sources for the dart:crypto library.
6 # 6 #
7 # TODO(ager): crypto_base.dart should be removed when the 7 # TODO(ager): crypto_base.dart should be removed when the
8 # VM can use the 'library' and 'part' directives for libraries. 8 # VM can use the 'library' and 'part' directives for libraries.
9 # At that point crypto.dart should be the only crypto library file. 9 # At that point crypto.dart should be the only crypto library file.
10 { 10 {
11 'sources': [ 11 'sources': [
12 'crypto.dart',
13 # The above file needs to be first as it lists the parts below.
12 'crypto_base.dart', 14 'crypto_base.dart',
13 'crypto_utils.dart', 15 'crypto_utils.dart',
14 'hash_utils.dart', 16 'hash_utils.dart',
15 'hmac.dart', 17 'hmac.dart',
16 'md5.dart', 18 'md5.dart',
17 'sha1.dart', 19 'sha1.dart',
18 'sha256.dart', 20 'sha256.dart',
19 ], 21 ],
20 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698