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

Unified Diff: net/tools/ct_mapper/BUILD.gn

Issue 1238413004: Framework for iterating over certificates in CT database from Chromium code. (not for review) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make samples page work Created 3 years, 6 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
« no previous file with comments | « net/cert/internal/cert_errors.h ('k') | net/tools/ct_mapper/FILE_FORMAT.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/ct_mapper/BUILD.gn
diff --git a/net/tools/ct_mapper/BUILD.gn b/net/tools/ct_mapper/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..237d169eacf6dde97a19133965d6dc5bbfc28ce0
--- /dev/null
+++ b/net/tools/ct_mapper/BUILD.gn
@@ -0,0 +1,28 @@
+executable("ct_mapper") {
+ testonly = true
+ sources = [
+ "ct_mapper_main.cc",
+ "entry.cc",
+ "entry.h",
+ "entry_reader.cc",
+ "entry_reader.h",
+ "mapper.cc",
+ "mapper.h",
+ "metrics.cc",
+ "metrics.h",
+ "my_visitor.cc",
+ "my_visitor.h",
+ "visitor.h",
+ "write_results.cc",
+ "write_results.h",
+ ]
+
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+
+ deps = [
+ "//net",
+ "//base",
+ ]
+}
+
« no previous file with comments | « net/cert/internal/cert_errors.h ('k') | net/tools/ct_mapper/FILE_FORMAT.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698