| 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 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1606 "spdy/core/spdy_headers_handler_interface.h", | 1606 "spdy/core/spdy_headers_handler_interface.h", |
| 1607 "spdy/core/spdy_pinnable_buffer_piece.cc", | 1607 "spdy/core/spdy_pinnable_buffer_piece.cc", |
| 1608 "spdy/core/spdy_pinnable_buffer_piece.h", | 1608 "spdy/core/spdy_pinnable_buffer_piece.h", |
| 1609 "spdy/core/spdy_prefixed_buffer_reader.cc", | 1609 "spdy/core/spdy_prefixed_buffer_reader.cc", |
| 1610 "spdy/core/spdy_prefixed_buffer_reader.h", | 1610 "spdy/core/spdy_prefixed_buffer_reader.h", |
| 1611 "spdy/core/spdy_protocol.cc", | 1611 "spdy/core/spdy_protocol.cc", |
| 1612 "spdy/core/spdy_protocol.h", | 1612 "spdy/core/spdy_protocol.h", |
| 1613 "spdy/core/write_scheduler.h", | 1613 "spdy/core/write_scheduler.h", |
| 1614 "spdy/core/zero_copy_output_buffer.h", | 1614 "spdy/core/zero_copy_output_buffer.h", |
| 1615 "spdy/platform/api/spdy_estimate_memory_usage.h", | 1615 "spdy/platform/api/spdy_estimate_memory_usage.h", |
| 1616 "spdy/platform/api/spdy_ptr_util.h", |
| 1616 "spdy/platform/api/spdy_string.h", | 1617 "spdy/platform/api/spdy_string.h", |
| 1617 "spdy/platform/api/spdy_string_piece.h", | 1618 "spdy/platform/api/spdy_string_piece.h", |
| 1618 "spdy/platform/api/spdy_string_utils.h", | 1619 "spdy/platform/api/spdy_string_utils.h", |
| 1619 "spdy/platform/impl/spdy_estimate_memory_usage_impl.h", | 1620 "spdy/platform/impl/spdy_estimate_memory_usage_impl.h", |
| 1621 "spdy/platform/impl/spdy_ptr_util_impl.h", |
| 1620 "spdy/platform/impl/spdy_string_impl.h", | 1622 "spdy/platform/impl/spdy_string_impl.h", |
| 1621 "spdy/platform/impl/spdy_string_piece_impl.h", | 1623 "spdy/platform/impl/spdy_string_piece_impl.h", |
| 1622 "spdy/platform/impl/spdy_string_utils_impl.h", | 1624 "spdy/platform/impl/spdy_string_utils_impl.h", |
| 1623 "ssl/client_cert_store.h", | 1625 "ssl/client_cert_store.h", |
| 1624 "ssl/client_cert_store_mac.cc", | 1626 "ssl/client_cert_store_mac.cc", |
| 1625 "ssl/client_cert_store_mac.h", | 1627 "ssl/client_cert_store_mac.h", |
| 1626 "ssl/client_cert_store_nss.cc", | 1628 "ssl/client_cert_store_nss.cc", |
| 1627 "ssl/client_cert_store_nss.h", | 1629 "ssl/client_cert_store_nss.h", |
| 1628 "ssl/client_cert_store_win.cc", | 1630 "ssl/client_cert_store_win.cc", |
| 1629 "ssl/client_cert_store_win.h", | 1631 "ssl/client_cert_store_win.h", |
| (...skipping 4191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5821 ] | 5823 ] |
| 5822 deps = [ | 5824 deps = [ |
| 5823 ":net_fuzzer_test_support", | 5825 ":net_fuzzer_test_support", |
| 5824 ":test_support", | 5826 ":test_support", |
| 5825 "//base", | 5827 "//base", |
| 5826 "//net", | 5828 "//net", |
| 5827 ] | 5829 ] |
| 5828 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" | 5830 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" |
| 5829 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" | 5831 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" |
| 5830 } | 5832 } |
| OLD | NEW |