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

Side by Side 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 unified diff | Download patch
OLDNEW
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 source_set("filename_util") { 5 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.
6 sources = [ 6 sources = [
7 "filename_util.cc", 7 "log_proof_fetcher.cc",
8 "filename_util.h", 8 "log_proof_fetcher.h",
9 ] 9 ]
10 10
11 deps = [ 11 deps = [
12 "//base", 12 "//base",
13 "//url", 13 "//components/safe_json",
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
14 "//net",
14 ] 15 ]
15 } 16 }
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698