Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: components/ssl_errors/BUILD.gn

Issue 1355413003: Move error classification into the ssl_errors component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/ssl_errors/BUILD.gn
diff --git a/components/ssl_errors/BUILD.gn b/components/ssl_errors/BUILD.gn
index fc3da1526b2e4e415bccf91b3853605c0104ad4a..cc1c7cebcf6c63b203e02fac7cf04cea25961902 100644
--- a/components/ssl_errors/BUILD.gn
+++ b/components/ssl_errors/BUILD.gn
@@ -5,6 +5,8 @@
# GYP version: components/ssl_errors.gyp
source_set("ssl_errors") {
sources = [
+ "error_classification.cc",
+ "error_classification.h",
"error_info.cc",
"error_info.h",
]
@@ -16,3 +18,15 @@ source_set("ssl_errors") {
"//ui/base",
]
}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "error_classification_unittests.cc",
+ ]
+
+ deps = [
+ ":ssl_errors",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698