| 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 static_library("crypto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "encryption_header_parsers.cc", | 10 "encryption_header_parsers.cc", |
| 11 "encryption_header_parsers.h", | 11 "encryption_header_parsers.h", |
| 12 "gcm_encryption_provider.cc", | 12 "gcm_encryption_provider.cc", |
| 13 "gcm_encryption_provider.h", | 13 "gcm_encryption_provider.h", |
| 14 "gcm_key_store.cc", | 14 "gcm_key_store.cc", |
| 15 "gcm_key_store.h", | 15 "gcm_key_store.h", |
| 16 "gcm_message_cryptographer.cc", | 16 "gcm_message_cryptographer.cc", |
| 17 "gcm_message_cryptographer.h", | 17 "gcm_message_cryptographer.h", |
| 18 "p256_key_util.cc", | 18 "p256_key_util.cc", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//base", | 62 "//base", |
| 63 "//base/test:test_support", | 63 "//base/test:test_support", |
| 64 "//components/gcm_driver/common", | 64 "//components/gcm_driver/common", |
| 65 "//crypto", | 65 "//crypto", |
| 66 "//crypto:platform", | 66 "//crypto:platform", |
| 67 "//net:test_support", | 67 "//net:test_support", |
| 68 "//testing/gtest", | 68 "//testing/gtest", |
| 69 "//third_party/protobuf:protobuf_lite", | 69 "//third_party/protobuf:protobuf_lite", |
| 70 ] | 70 ] |
| 71 } | 71 } |
| OLD | NEW |