Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/dart/rules.gni") | |
| 6 | |
| 7 dart_package("crypto") { | |
| 8 sources = [ | |
| 9 "crypto/crypto.dart", | |
| 10 "crypto/src/crypto_utils.dart", | |
| 11 "crypto/src/hash_utils.dart", | |
| 12 "crypto/src/hmac.dart", | |
| 13 "crypto/src/md5.dart", | |
| 14 "crypto/src/sha1.dart", | |
| 15 "crypto/src/sha256.dart", | |
| 16 ] | |
| 17 } | |
| OLD | NEW |