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

Unified Diff: components/ssl_errors/BUILD.gn

Issue 1341923002: Create a component for SSL error handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up for review Created 5 years, 3 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/about_handler/BUILD.gn b/components/ssl_errors/BUILD.gn
similarity index 57%
copy from components/about_handler/BUILD.gn
copy to components/ssl_errors/BUILD.gn
index eeaff47f027871b388ba842f9d444148a76b9aa9..4961c471235f867b474e23305106bc391f143d96 100644
--- a/components/about_handler/BUILD.gn
+++ b/components/ssl_errors/BUILD.gn
@@ -2,16 +2,17 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("about_handler") {
+# GYP version: components/ssl_errors.gyp
+static_library("ssl_errors") {
blundell 2015/09/16 10:04:10 s/static_library/source_set (they're generally pre
felt 2015/09/16 14:41:53 Done.
sources = [
- "about_protocol_handler.cc",
- "about_protocol_handler.h",
- "url_request_about_job.cc",
- "url_request_about_job.h",
+ "ssl_error_info.cc",
+ "ssl_error_info.h",
]
deps = [
"//base",
+ "//components/strings",
"//net",
+ "//ui/base",
]
}

Powered by Google App Engine
This is Rietveld 408576698