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

Side by Side Diff: net/BUILD.gn

Issue 2115563002: [libfuzzer] Added script for dictionary generation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove old dictionaries. Created 4 years, 5 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
OLDNEW
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 1950 matching lines...) Expand 10 before | Expand all | Expand 10 after
1961 fuzzer_test("net_http_stream_parser_fuzzer") { 1961 fuzzer_test("net_http_stream_parser_fuzzer") {
1962 sources = [ 1962 sources = [
1963 "http/http_stream_parser_fuzzer.cc", 1963 "http/http_stream_parser_fuzzer.cc",
1964 ] 1964 ]
1965 deps = [ 1965 deps = [
1966 ":net_fuzzer_test_support", 1966 ":net_fuzzer_test_support",
1967 ":test_support", 1967 ":test_support",
1968 "//base", 1968 "//base",
1969 "//net", 1969 "//net",
1970 ] 1970 ]
1971 dict = "data/http/http.dict" 1971 dict = "data/dicts/generated/net_http_stream_parser_fuzzer.dict"
1972 } 1972 }
1973 1973
1974 fuzzer_test("net_ftp_ctrl_response_fuzzer") { 1974 fuzzer_test("net_ftp_ctrl_response_fuzzer") {
1975 sources = [ 1975 sources = [
1976 "ftp/ftp_ctrl_response_fuzzer.cc", 1976 "ftp/ftp_ctrl_response_fuzzer.cc",
1977 ] 1977 ]
1978 deps = [ 1978 deps = [
1979 ":net_fuzzer_test_support", 1979 ":net_fuzzer_test_support",
1980 "//base", 1980 "//base",
1981 "//net", 1981 "//net",
(...skipping 25 matching lines...) Expand all
2007 } 2007 }
2008 2008
2009 fuzzer_test("net_websocket_frame_parser_fuzzer") { 2009 fuzzer_test("net_websocket_frame_parser_fuzzer") {
2010 sources = [ 2010 sources = [
2011 "websockets/websocket_frame_parser_fuzzer.cc", 2011 "websockets/websocket_frame_parser_fuzzer.cc",
2012 ] 2012 ]
2013 deps = [ 2013 deps = [
2014 ":net_fuzzer_test_support", 2014 ":net_fuzzer_test_support",
2015 "//net", 2015 "//net",
2016 ] 2016 ]
2017 dict = "data/dicts/generated/net_websocket_frame_parser_fuzzer.dict"
2017 } 2018 }
2018 2019
2019 fuzzer_test("net_http_chunked_decoder_fuzzer") { 2020 fuzzer_test("net_http_chunked_decoder_fuzzer") {
2020 sources = [ 2021 sources = [
2021 "http/http_chunked_decoder_fuzzer.cc", 2022 "http/http_chunked_decoder_fuzzer.cc",
2022 ] 2023 ]
2023 deps = [ 2024 deps = [
2024 ":net_fuzzer_test_support", 2025 ":net_fuzzer_test_support",
2025 "//net", 2026 "//net",
2026 ] 2027 ]
2027 dict = "http/http_chunked_decoder_fuzzer.dict" 2028 dict = "http/http_chunked_decoder_fuzzer.dict"
2028 } 2029 }
2029 2030
2030 fuzzer_test("net_http_proxy_client_socket_fuzzer") { 2031 fuzzer_test("net_http_proxy_client_socket_fuzzer") {
2031 sources = [ 2032 sources = [
2032 "http/http_proxy_client_socket_fuzzer.cc", 2033 "http/http_proxy_client_socket_fuzzer.cc",
2033 ] 2034 ]
2034 deps = [ 2035 deps = [
2035 ":net_fuzzer_test_support", 2036 ":net_fuzzer_test_support",
2036 ":test_support", 2037 ":test_support",
2037 "//base", 2038 "//base",
2038 "//net", 2039 "//net",
2039 ] 2040 ]
2040 dict = "data/http/http.dict" 2041 dict = "data/dicts/generated/net_http_proxy_client_socket_fuzzer.dict"
2041 } 2042 }
2042 2043
2043 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 2044 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
2044 sources = [ 2045 sources = [
2045 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 2046 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
2046 ] 2047 ]
2047 deps = [ 2048 deps = [
2048 ":net_fuzzer_test_support", 2049 ":net_fuzzer_test_support",
2049 "//base", 2050 "//base",
2050 "//net", 2051 "//net",
(...skipping 27 matching lines...) Expand all
2078 fuzzer_test("net_url_request_fuzzer") { 2079 fuzzer_test("net_url_request_fuzzer") {
2079 sources = [ 2080 sources = [
2080 "url_request/url_request_fuzzer.cc", 2081 "url_request/url_request_fuzzer.cc",
2081 ] 2082 ]
2082 deps = [ 2083 deps = [
2083 ":net_fuzzer_test_support", 2084 ":net_fuzzer_test_support",
2084 ":test_support", 2085 ":test_support",
2085 "//base", 2086 "//base",
2086 "//net", 2087 "//net",
2087 ] 2088 ]
2088 dict = "data/http/http.dict" 2089 dict = "data/dicts/generated/net_url_request_fuzzer.dict"
2089 } 2090 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698