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

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

Issue 2680933009: Add unittests for HSTS decoding. (Closed)
Patch Set: Comment rsleevi. Created 3 years, 9 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/http/transport_security_state_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/transport_security_state_generator/BUILD.gn
diff --git a/net/tools/transport_security_state_generator/BUILD.gn b/net/tools/transport_security_state_generator/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..1af8b7ec26031e2265c80c19b0a261da5be2ec2d
--- /dev/null
+++ b/net/tools/transport_security_state_generator/BUILD.gn
@@ -0,0 +1,36 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+assert(current_toolchain == host_toolchain)
+
+executable("transport_security_state_generator") {
+ sources = [
+ "bit_writer.cc",
+ "bit_writer.h",
+ "cert_util.cc",
+ "cert_util.h",
+ "huffman/huffman_builder.cc",
+ "huffman/huffman_builder.h",
+ "pinset.cc",
+ "pinset.h",
+ "pinsets.cc",
+ "pinsets.h",
+ "preloaded_state_generator.cc",
+ "preloaded_state_generator.h",
+ "spki_hash.cc",
+ "spki_hash.h",
+ "transport_security_state_entry.cc",
+ "transport_security_state_entry.h",
+ "transport_security_state_generator.cc",
+ "trie/trie_bit_buffer.cc",
+ "trie/trie_bit_buffer.h",
+ "trie/trie_writer.cc",
+ "trie/trie_writer.h",
+ ]
+ deps = [
+ "//base",
+ "//crypto",
+ "//third_party/boringssl",
+ ]
+}
« no previous file with comments | « net/http/transport_security_state_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698