| 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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 "http/http_response_info.cc", | 274 "http/http_response_info.cc", |
| 275 "http/http_response_info.h", | 275 "http/http_response_info.h", |
| 276 "http/http_security_headers.cc", | 276 "http/http_security_headers.cc", |
| 277 "http/http_security_headers.h", | 277 "http/http_security_headers.h", |
| 278 "http/http_util.cc", | 278 "http/http_util.cc", |
| 279 "http/http_util.h", | 279 "http/http_util.h", |
| 280 "http/http_vary_data.cc", | 280 "http/http_vary_data.cc", |
| 281 "http/http_vary_data.h", | 281 "http/http_vary_data.h", |
| 282 "http/transport_security_state.cc", | 282 "http/transport_security_state.cc", |
| 283 "http/transport_security_state.h", | 283 "http/transport_security_state.h", |
| 284 "http/transport_security_state_source.h", |
| 284 "log/net_log.cc", | 285 "log/net_log.cc", |
| 285 "log/net_log.h", | 286 "log/net_log.h", |
| 286 "log/net_log_capture_mode.cc", | 287 "log/net_log_capture_mode.cc", |
| 287 "log/net_log_capture_mode.h", | 288 "log/net_log_capture_mode.h", |
| 288 "log/net_log_entry.cc", | 289 "log/net_log_entry.cc", |
| 289 "log/net_log_entry.h", | 290 "log/net_log_entry.h", |
| 290 "log/net_log_event_type_list.h", | 291 "log/net_log_event_type_list.h", |
| 291 "log/net_log_source.cc", | 292 "log/net_log_source.cc", |
| 292 "log/net_log_source.h", | 293 "log/net_log_source.h", |
| 293 "log/net_log_source_type_list.h", | 294 "log/net_log_source_type_list.h", |
| (...skipping 4434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4728 ":cert_verify_proc_whitelist_unittest_data", | 4729 ":cert_verify_proc_whitelist_unittest_data", |
| 4729 ":net", | 4730 ":net", |
| 4730 ":simple_quic_tools", | 4731 ":simple_quic_tools", |
| 4731 ":test_support", | 4732 ":test_support", |
| 4732 "//base", | 4733 "//base", |
| 4733 "//base/third_party/dynamic_annotations", | 4734 "//base/third_party/dynamic_annotations", |
| 4734 "//crypto", | 4735 "//crypto", |
| 4735 "//crypto:platform", | 4736 "//crypto:platform", |
| 4736 "//crypto:test_support", | 4737 "//crypto:test_support", |
| 4737 "//net/base/registry_controlled_domains", | 4738 "//net/base/registry_controlled_domains", |
| 4739 "//net/tools/transport_security_state_generator:generate_test_data", |
| 4738 "//testing/gmock", | 4740 "//testing/gmock", |
| 4739 "//testing/gtest", | 4741 "//testing/gtest", |
| 4740 "//third_party/zlib", | 4742 "//third_party/zlib", |
| 4741 "//url", | 4743 "//url", |
| 4742 "//url:url_features", | 4744 "//url:url_features", |
| 4743 ] | 4745 ] |
| 4744 if (!is_proto_quic) { | 4746 if (!is_proto_quic) { |
| 4745 deps += [ | 4747 deps += [ |
| 4746 ":extras", | 4748 ":extras", |
| 4747 "//base:i18n", | 4749 "//base:i18n", |
| (...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5671 ] | 5673 ] |
| 5672 deps = [ | 5674 deps = [ |
| 5673 ":net_fuzzer_test_support", | 5675 ":net_fuzzer_test_support", |
| 5674 ":test_support", | 5676 ":test_support", |
| 5675 "//base", | 5677 "//base", |
| 5676 "//net", | 5678 "//net", |
| 5677 ] | 5679 ] |
| 5678 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5680 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5679 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5681 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5680 } | 5682 } |
| 5681 | |
| 5682 if (host_toolchain == current_toolchain && !is_proto_quic) { | |
| 5683 executable("transport_security_state_generator") { | |
| 5684 sources = [ | |
| 5685 "tools/transport_security_state_generator/bit_writer.cc", | |
| 5686 "tools/transport_security_state_generator/bit_writer.h", | |
| 5687 "tools/transport_security_state_generator/cert_util.cc", | |
| 5688 "tools/transport_security_state_generator/cert_util.h", | |
| 5689 "tools/transport_security_state_generator/huffman/huffman_builder.cc", | |
| 5690 "tools/transport_security_state_generator/huffman/huffman_builder.h", | |
| 5691 "tools/transport_security_state_generator/pinset.cc", | |
| 5692 "tools/transport_security_state_generator/pinset.h", | |
| 5693 "tools/transport_security_state_generator/pinsets.cc", | |
| 5694 "tools/transport_security_state_generator/pinsets.h", | |
| 5695 "tools/transport_security_state_generator/preloaded_state_generator.cc", | |
| 5696 "tools/transport_security_state_generator/preloaded_state_generator.h", | |
| 5697 "tools/transport_security_state_generator/spki_hash.cc", | |
| 5698 "tools/transport_security_state_generator/spki_hash.h", | |
| 5699 "tools/transport_security_state_generator/transport_security_state_entry.c
c", | |
| 5700 "tools/transport_security_state_generator/transport_security_state_entry.h
", | |
| 5701 "tools/transport_security_state_generator/transport_security_state_generat
or.cc", | |
| 5702 "tools/transport_security_state_generator/trie/trie_bit_buffer.cc", | |
| 5703 "tools/transport_security_state_generator/trie/trie_bit_buffer.h", | |
| 5704 "tools/transport_security_state_generator/trie/trie_writer.cc", | |
| 5705 "tools/transport_security_state_generator/trie/trie_writer.h", | |
| 5706 ] | |
| 5707 deps = [ | |
| 5708 "//base", | |
| 5709 "//crypto", | |
| 5710 "//third_party/boringssl", | |
| 5711 ] | |
| 5712 } | |
| 5713 } | |
| OLD | NEW |