| OLD | NEW |
| (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 } |
| OLD | NEW |