| 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 static_library("ssl_errors") { | 5 static_library("ssl_errors") { |
| 6 sources = [ | 6 sources = [ |
| 7 "error_classification.cc", | 7 "error_classification.cc", |
| 8 "error_classification.h", | 8 "error_classification.h", |
| 9 "error_info.cc", | 9 "error_info.cc", |
| 10 "error_info.h", | 10 "error_info.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 source_set("unit_tests") { | 24 source_set("unit_tests") { |
| 25 testonly = true | 25 testonly = true |
| 26 sources = [ | 26 sources = [ |
| 27 "error_classification_unittest.cc", | 27 "error_classification_unittest.cc", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 deps = [ | 30 deps = [ |
| 31 ":ssl_errors", | 31 ":ssl_errors", |
| 32 "//base", | 32 "//base", |
| 33 "//components/network_time", | 33 "//components/network_time", |
| 34 "//components/network_time:network_time_test_support", |
| 34 "//components/prefs:test_support", | 35 "//components/prefs:test_support", |
| 35 "//net:test_support", | 36 "//net:test_support", |
| 36 "//testing/gtest", | 37 "//testing/gtest", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| OLD | NEW |