| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("ssl/flags.gni") | 5 import("//build/config/crypto.gni") |
| 6 | 6 |
| 7 crypto_minimal_sources = [ | 7 crypto_minimal_sources = [ |
| 8 "hmac.cc", | 8 "hmac.cc", |
| 9 "hmac.h", | 9 "hmac.h", |
| 10 "hmac_win.cc", | 10 "hmac_win.cc", |
| 11 "secure_util.cc", | 11 "secure_util.cc", |
| 12 "secure_util.h", | 12 "secure_util.h", |
| 13 "symmetric_key.h", | 13 "symmetric_key.h", |
| 14 "symmetric_key_win.cc", | 14 "symmetric_key_win.cc", |
| 15 "third_party/nss/chromium-sha256.h", | 15 "third_party/nss/chromium-sha256.h", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 "//base/test:run_all_unittests", | 236 "//base/test:run_all_unittests", |
| 237 "//base/test:test_support_base", | 237 "//base/test:test_support_base", |
| 238 "//testing/gmock", | 238 "//testing/gmock", |
| 239 "//testing/gtest", | 239 "//testing/gtest", |
| 240 ] | 240 ] |
| 241 | 241 |
| 242 if (is_mac) { | 242 if (is_mac) { |
| 243 #deps += "//third_party/nss:nspr" | 243 #deps += "//third_party/nss:nspr" |
| 244 } | 244 } |
| 245 } | 245 } |
| OLD | NEW |