| OLD | NEW |
| 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 contains the parts listed 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 } |
| OLD | NEW |