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

Unified Diff: components/certificate_transparency/BUILD.gn

Issue 1222953002: Certificate Transparency: Add STH Fetching capability. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplified handling of responses per review comments Created 5 years, 5 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/certificate_transparency/BUILD.gn
diff --git a/chrome/installer/launcher_support/BUILD.gn b/components/certificate_transparency/BUILD.gn
similarity index 57%
copy from chrome/installer/launcher_support/BUILD.gn
copy to components/certificate_transparency/BUILD.gn
index 9abab50df0aefabdc299b6795e0fee8f77ee83f2..3f62e2344e2c4aa9436fd6db52cf070396d4a723 100644
--- a/chrome/installer/launcher_support/BUILD.gn
+++ b/components/certificate_transparency/BUILD.gn
@@ -2,13 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("launcher_support") {
+static_library("certificate_transparency") {
sources = [
- "chrome_launcher_support.cc",
- "chrome_launcher_support.h",
+ "log_proof_fetcher.cc",
+ "log_proof_fetcher.h",
]
deps = [
"//base",
+ "//components/safe_json",
+ "//content",
mmenke 2015/07/29 18:51:50 What needs this? And is there no content_common i
Eran Messeri 2015/07/31 12:55:51 For now nothing uses this, removed - I'll make not
+ "//net",
]
}

Powered by Google App Engine
This is Rietveld 408576698