| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "p256_key_util_unittest.cc", | 57 "p256_key_util_unittest.cc", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 deps = [ |
| 61 ":crypto", | 61 ":crypto", |
| 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 "//testing/gtest", | 68 "//testing/gtest", |
| 68 "//third_party/protobuf:protobuf_lite", | 69 "//third_party/protobuf:protobuf_lite", |
| 69 ] | 70 ] |
| 70 } | 71 } |
| OLD | NEW |