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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « net/http/transport_security_state_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 assert(current_toolchain == host_toolchain)
6
7 executable("transport_security_state_generator") {
8 sources = [
9 "bit_writer.cc",
10 "bit_writer.h",
11 "cert_util.cc",
12 "cert_util.h",
13 "huffman/huffman_builder.cc",
14 "huffman/huffman_builder.h",
15 "pinset.cc",
16 "pinset.h",
17 "pinsets.cc",
18 "pinsets.h",
19 "preloaded_state_generator.cc",
20 "preloaded_state_generator.h",
21 "spki_hash.cc",
22 "spki_hash.h",
23 "transport_security_state_entry.cc",
24 "transport_security_state_entry.h",
25 "transport_security_state_generator.cc",
26 "trie/trie_bit_buffer.cc",
27 "trie/trie_bit_buffer.h",
28 "trie/trie_writer.cc",
29 "trie/trie_writer.h",
30 ]
31 deps = [
32 "//base",
33 "//crypto",
34 "//third_party/boringssl",
35 ]
36 }
OLDNEW
« 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