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

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: Adding OWNERS Created 5 years, 4 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/mojo/util/BUILD.gn b/components/certificate_transparency/BUILD.gn
similarity index 59%
copy from mojo/util/BUILD.gn
copy to components/certificate_transparency/BUILD.gn
index 379bc96230e7c6037bca99a4a311de60a65c109a..1619d54ddcdf11f3989f520a9573b87ec1909315 100644
--- a/mojo/util/BUILD.gn
+++ b/components/certificate_transparency/BUILD.gn
@@ -2,14 +2,15 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("filename_util") {
+static_library("certificate_transparency") {
sdefresne 2015/08/07 16:39:08 Any reason for using static_library and not source
Eran Messeri 2015/08/17 16:33:35 Done - no reason not to use source_set here.
sources = [
- "filename_util.cc",
- "filename_util.h",
+ "log_proof_fetcher.cc",
+ "log_proof_fetcher.h",
]
deps = [
"//base",
- "//url",
sdefresne 2015/08/07 16:39:08 There is an #include of url/gurl.h in components/c
Eran Messeri 2015/08/17 16:33:35 Done - I didn't compile it locally using gn, I rel
+ "//components/safe_json",
+ "//net",
]
}
sdefresne 2015/08/07 16:39:08 Can you also add unit_test target here and into //
Eran Messeri 2015/08/17 16:33:35 Done.

Powered by Google App Engine
This is Rietveld 408576698