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 14 matching lines...) Expand all Loading... |
25 "//components/gcm_driver/crypto/proto", | 25 "//components/gcm_driver/crypto/proto", |
26 "//components/leveldb_proto", | 26 "//components/leveldb_proto", |
27 "//crypto", | 27 "//crypto", |
28 "//crypto:platform", | 28 "//crypto:platform", |
29 "//net", | 29 "//net", |
30 "//third_party/protobuf:protobuf_lite", | 30 "//third_party/protobuf:protobuf_lite", |
31 ] | 31 ] |
32 } | 32 } |
33 | 33 |
34 # GYP version: components/gcm_driver.gypi:gcm_driver_crypto_test_support | 34 # GYP version: components/gcm_driver.gypi:gcm_driver_crypto_test_support |
35 source_set("test_support") { | 35 static_library("test_support") { |
36 testonly = true | 36 testonly = true |
37 sources = [ | 37 sources = [ |
38 "gcm_crypto_test_helpers.cc", | 38 "gcm_crypto_test_helpers.cc", |
39 "gcm_crypto_test_helpers.h", | 39 "gcm_crypto_test_helpers.h", |
40 ] | 40 ] |
41 | 41 |
42 deps = [ | 42 deps = [ |
43 ":crypto", | 43 ":crypto", |
44 "//base", | 44 "//base", |
45 "//components/gcm_driver/common", | 45 "//components/gcm_driver/common", |
(...skipping 16 matching lines...) Expand all 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 |