| 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.gypi |
| 6 source_set("ssl_errors") { | 6 source_set("ssl_errors") { |
| 7 sources = [ | 7 sources = [ |
| 8 "error_classification.cc", | 8 "error_classification.cc", |
| 9 "error_classification.h", | 9 "error_classification.h", |
| 10 "error_info.cc", | 10 "error_info.cc", |
| 11 "error_info.h", | 11 "error_info.h", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 "//base", | 15 "//base", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 ":ssl_errors", | 32 ":ssl_errors", |
| 33 "//base", | 33 "//base", |
| 34 "//components/network_time", | 34 "//components/network_time", |
| 35 "//components/prefs:test_support", | 35 "//components/prefs:test_support", |
| 36 "//net:test_support", | 36 "//net:test_support", |
| 37 "//testing/gtest", | 37 "//testing/gtest", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| OLD | NEW |