| 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 # GYP version: components/ssl_errors.gyp | 5 # GYP version: components/ssl_errors.gyp |
| 6 source_set("ssl_errors") { | 6 source_set("ssl_errors") { |
| 7 sources = [ | 7 sources = [ |
| 8 "error_classification.cc", |
| 9 "error_classification.h", |
| 8 "error_info.cc", | 10 "error_info.cc", |
| 9 "error_info.h", | 11 "error_info.h", |
| 10 ] | 12 ] |
| 11 | 13 |
| 12 deps = [ | 14 deps = [ |
| 13 "//base", | 15 "//base", |
| 14 "//components/strings", | 16 "//components/strings", |
| 15 "//net", | 17 "//net", |
| 16 "//ui/base", | 18 "//ui/base", |
| 17 ] | 19 ] |
| 18 } | 20 } |
| 21 |
| 22 source_set("unit_tests") { |
| 23 testonly = true |
| 24 sources = [ |
| 25 "error_classification_unittests.cc", |
| 26 ] |
| 27 |
| 28 deps = [ |
| 29 ":ssl_errors", |
| 30 "//testing/gtest", |
| 31 ] |
| 32 } |
| OLD | NEW |