| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 | 6 |
| 7 # GYP version: components/gcm_driver.gypi:gcm_driver_crypto | 7 # GYP version: components/gcm_driver.gypi:gcm_driver_crypto |
| 8 source_set("crypto") { | 8 source_set("crypto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "gcm_encryption_provider.cc", | |
| 11 "gcm_encryption_provider.h", | |
| 12 "gcm_key_store.cc", | 10 "gcm_key_store.cc", |
| 13 "gcm_key_store.h", | 11 "gcm_key_store.h", |
| 14 "gcm_message_cryptographer.cc", | 12 "gcm_message_cryptographer.cc", |
| 15 "gcm_message_cryptographer.h", | 13 "gcm_message_cryptographer.h", |
| 16 "gcm_message_cryptographer_nss.cc", | 14 "gcm_message_cryptographer_nss.cc", |
| 17 "gcm_message_cryptographer_openssl.cc", | 15 "gcm_message_cryptographer_openssl.cc", |
| 18 ] | 16 ] |
| 19 | 17 |
| 20 deps = [ | 18 deps = [ |
| 21 "//base", | 19 "//base", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 42 ] | 40 ] |
| 43 | 41 |
| 44 deps = [ | 42 deps = [ |
| 45 ":crypto", | 43 ":crypto", |
| 46 "//base", | 44 "//base", |
| 47 "//crypto:platform", | 45 "//crypto:platform", |
| 48 "//testing/gtest", | 46 "//testing/gtest", |
| 49 "//third_party/protobuf:protobuf_lite", | 47 "//third_party/protobuf:protobuf_lite", |
| 50 ] | 48 ] |
| 51 } | 49 } |
| OLD | NEW |