| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("cast_certificate") { | 5 source_set("cast_certificate") { |
| 6 sources = [ | 6 sources = [ |
| 7 "cast_cert_validator.cc", | 7 "cast_cert_validator.cc", |
| 8 "cast_cert_validator.h", | 8 "cast_cert_validator.h", |
| 9 "cast_crl.cc", |
| 10 "cast_crl.h", |
| 9 "cast_root_ca_cert_der-inc.h", | 11 "cast_root_ca_cert_der-inc.h", |
| 10 "eureka_root_ca_der-inc.h", | 12 "eureka_root_ca_der-inc.h", |
| 11 ] | 13 ] |
| 12 deps = [ | 14 deps = [ |
| 13 "//base", | 15 "//base", |
| 16 "//components/cast_certificate/proto", |
| 14 "//net", | 17 "//net", |
| 15 ] | 18 ] |
| 16 } | 19 } |
| 17 | 20 |
| 18 source_set("test_support") { | 21 source_set("test_support") { |
| 19 testonly = true | 22 testonly = true |
| 20 sources = [ | 23 sources = [ |
| 21 "cast_cert_validator_test_helpers.cc", | 24 "cast_cert_validator_test_helpers.cc", |
| 22 "cast_cert_validator_test_helpers.h", | 25 "cast_cert_validator_test_helpers.h", |
| 23 ] | 26 ] |
| 24 deps = [ | 27 deps = [ |
| 25 ":cast_certificate", | 28 ":cast_certificate", |
| 26 "//base", | 29 "//base", |
| 27 "//net", | 30 "//net", |
| 28 "//testing/gtest", | 31 "//testing/gtest", |
| 29 ] | 32 ] |
| 30 } | 33 } |
| 31 | 34 |
| 32 source_set("unit_tests") { | 35 source_set("unit_tests") { |
| 33 testonly = true | 36 testonly = true |
| 34 sources = [ | 37 sources = [ |
| 35 "cast_cert_validator_unittest.cc", | 38 "cast_cert_validator_unittest.cc", |
| 39 "cast_crl_unittest.cc", |
| 36 ] | 40 ] |
| 37 deps = [ | 41 deps = [ |
| 38 ":cast_certificate", | 42 ":cast_certificate", |
| 39 ":test_support", | 43 ":test_support", |
| 40 "//base", | 44 "//base", |
| 45 "//components/cast_certificate/proto:unittest_proto", |
| 41 "//net", | 46 "//net", |
| 42 "//testing/gtest", | 47 "//testing/gtest", |
| 43 ] | 48 ] |
| 44 } | 49 } |
| OLD | NEW |