| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 4717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4728 ":cert_verify_proc_whitelist_unittest_data", | 4728 ":cert_verify_proc_whitelist_unittest_data", |
| 4729 ":net", | 4729 ":net", |
| 4730 ":simple_quic_tools", | 4730 ":simple_quic_tools", |
| 4731 ":test_support", | 4731 ":test_support", |
| 4732 "//base", | 4732 "//base", |
| 4733 "//base/third_party/dynamic_annotations", | 4733 "//base/third_party/dynamic_annotations", |
| 4734 "//crypto", | 4734 "//crypto", |
| 4735 "//crypto:platform", | 4735 "//crypto:platform", |
| 4736 "//crypto:test_support", | 4736 "//crypto:test_support", |
| 4737 "//net/base/registry_controlled_domains", | 4737 "//net/base/registry_controlled_domains", |
| 4738 "//net/http:transport_security_state_unittest_data", |
| 4738 "//testing/gmock", | 4739 "//testing/gmock", |
| 4739 "//testing/gtest", | 4740 "//testing/gtest", |
| 4740 "//third_party/protobuf:protobuf_lite", | 4741 "//third_party/protobuf:protobuf_lite", |
| 4741 "//third_party/zlib", | 4742 "//third_party/zlib", |
| 4742 "//url", | 4743 "//url", |
| 4743 "//url:url_features", | 4744 "//url:url_features", |
| 4744 ] | 4745 ] |
| 4745 if (!is_proto_quic) { | 4746 if (!is_proto_quic) { |
| 4746 deps += [ | 4747 deps += [ |
| 4747 ":extras", | 4748 ":extras", |
| (...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5665 ] | 5666 ] |
| 5666 deps = [ | 5667 deps = [ |
| 5667 ":net_fuzzer_test_support", | 5668 ":net_fuzzer_test_support", |
| 5668 ":test_support", | 5669 ":test_support", |
| 5669 "//base", | 5670 "//base", |
| 5670 "//net", | 5671 "//net", |
| 5671 ] | 5672 ] |
| 5672 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5673 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5673 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5674 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5674 } | 5675 } |
| 5675 | |
| 5676 if (host_toolchain == current_toolchain && !is_proto_quic) { | |
| 5677 executable("transport_security_state_generator") { | |
| 5678 sources = [ | |
| 5679 "tools/transport_security_state_generator/bit_writer.cc", | |
| 5680 "tools/transport_security_state_generator/bit_writer.h", | |
| 5681 "tools/transport_security_state_generator/cert_util.cc", | |
| 5682 "tools/transport_security_state_generator/cert_util.h", | |
| 5683 "tools/transport_security_state_generator/huffman/huffman_builder.cc", | |
| 5684 "tools/transport_security_state_generator/huffman/huffman_builder.h", | |
| 5685 "tools/transport_security_state_generator/pinset.cc", | |
| 5686 "tools/transport_security_state_generator/pinset.h", | |
| 5687 "tools/transport_security_state_generator/pinsets.cc", | |
| 5688 "tools/transport_security_state_generator/pinsets.h", | |
| 5689 "tools/transport_security_state_generator/preloaded_state_generator.cc", | |
| 5690 "tools/transport_security_state_generator/preloaded_state_generator.h", | |
| 5691 "tools/transport_security_state_generator/spki_hash.cc", | |
| 5692 "tools/transport_security_state_generator/spki_hash.h", | |
| 5693 "tools/transport_security_state_generator/transport_security_state_entry.c
c", | |
| 5694 "tools/transport_security_state_generator/transport_security_state_entry.h
", | |
| 5695 "tools/transport_security_state_generator/transport_security_state_generat
or.cc", | |
| 5696 "tools/transport_security_state_generator/trie/trie_bit_buffer.cc", | |
| 5697 "tools/transport_security_state_generator/trie/trie_bit_buffer.h", | |
| 5698 "tools/transport_security_state_generator/trie/trie_writer.cc", | |
| 5699 "tools/transport_security_state_generator/trie/trie_writer.h", | |
| 5700 ] | |
| 5701 deps = [ | |
| 5702 "//base", | |
| 5703 "//crypto", | |
| 5704 "//third_party/boringssl", | |
| 5705 ] | |
| 5706 } | |
| 5707 } | |
| OLD | NEW |