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 "encryption_header_parsers.cc", | 10 "encryption_header_parsers.cc", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "encryption_header_parsers_unittest.cc", | 69 "encryption_header_parsers_unittest.cc", |
70 "gcm_encryption_provider_unittest.cc", | 70 "gcm_encryption_provider_unittest.cc", |
71 "gcm_key_store_unittest.cc", | 71 "gcm_key_store_unittest.cc", |
72 "gcm_message_cryptographer_unittest.cc", | 72 "gcm_message_cryptographer_unittest.cc", |
73 "p256_key_util_unittest.cc", | 73 "p256_key_util_unittest.cc", |
74 ] | 74 ] |
75 | 75 |
76 deps = [ | 76 deps = [ |
77 ":crypto", | 77 ":crypto", |
78 "//base", | 78 "//base", |
| 79 "//base/test:test_support", |
79 "//components/gcm_driver/common", | 80 "//components/gcm_driver/common", |
80 "//crypto", | 81 "//crypto", |
81 "//crypto:platform", | 82 "//crypto:platform", |
82 "//testing/gtest", | 83 "//testing/gtest", |
83 "//third_party/protobuf:protobuf_lite", | 84 "//third_party/protobuf:protobuf_lite", |
84 ] | 85 ] |
85 } | 86 } |
OLD | NEW |