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

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: A couple of fixes ported from local version. 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 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after
1960 fuzzer_test("net_http_stream_parser_fuzzer") { 1960 fuzzer_test("net_http_stream_parser_fuzzer") {
1961 sources = [ 1961 sources = [
1962 "http/http_stream_parser_fuzzer.cc", 1962 "http/http_stream_parser_fuzzer.cc",
1963 ] 1963 ]
1964 deps = [ 1964 deps = [
1965 ":net_fuzzer_test_support", 1965 ":net_fuzzer_test_support",
1966 ":test_support", 1966 ":test_support",
1967 "//base", 1967 "//base",
1968 "//net", 1968 "//net",
1969 ] 1969 ]
1970 dict = "data/http/http.dict" 1970 dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_http_stream_parser_fuz zer.dict"
inferno 2016/07/04 00:21:55 we should probably prefer to keep these dicts next
mmoroz 2016/07/06 15:06:18 Done.
1971 } 1971 }
1972 1972
1973 fuzzer_test("net_ftp_ctrl_response_fuzzer") { 1973 fuzzer_test("net_ftp_ctrl_response_fuzzer") {
1974 sources = [ 1974 sources = [
1975 "ftp/ftp_ctrl_response_fuzzer.cc", 1975 "ftp/ftp_ctrl_response_fuzzer.cc",
1976 ] 1976 ]
1977 deps = [ 1977 deps = [
1978 ":net_fuzzer_test_support", 1978 ":net_fuzzer_test_support",
1979 "//base", 1979 "//base",
1980 "//net", 1980 "//net",
(...skipping 25 matching lines...) Expand all
2006 } 2006 }
2007 2007
2008 fuzzer_test("net_websocket_frame_parser_fuzzer") { 2008 fuzzer_test("net_websocket_frame_parser_fuzzer") {
2009 sources = [ 2009 sources = [
2010 "websockets/websocket_frame_parser_fuzzer.cc", 2010 "websockets/websocket_frame_parser_fuzzer.cc",
2011 ] 2011 ]
2012 deps = [ 2012 deps = [
2013 ":net_fuzzer_test_support", 2013 ":net_fuzzer_test_support",
2014 "//net", 2014 "//net",
2015 ] 2015 ]
2016 dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_websocket_frame_parser _fuzzer.dict"
2016 } 2017 }
2017 2018
2018 fuzzer_test("net_http_chunked_decoder_fuzzer") { 2019 fuzzer_test("net_http_chunked_decoder_fuzzer") {
2019 sources = [ 2020 sources = [
2020 "http/http_chunked_decoder_fuzzer.cc", 2021 "http/http_chunked_decoder_fuzzer.cc",
2021 ] 2022 ]
2022 deps = [ 2023 deps = [
2023 ":net_fuzzer_test_support", 2024 ":net_fuzzer_test_support",
2024 "//net", 2025 "//net",
2025 ] 2026 ]
2026 dict = "http/http_chunked_decoder_fuzzer.dict" 2027 dict = "http/http_chunked_decoder_fuzzer.dict"
2027 } 2028 }
2028 2029
2029 fuzzer_test("net_http_proxy_client_socket_fuzzer") { 2030 fuzzer_test("net_http_proxy_client_socket_fuzzer") {
2030 sources = [ 2031 sources = [
2031 "http/http_proxy_client_socket_fuzzer.cc", 2032 "http/http_proxy_client_socket_fuzzer.cc",
2032 ] 2033 ]
2033 deps = [ 2034 deps = [
2034 ":net_fuzzer_test_support", 2035 ":net_fuzzer_test_support",
2035 ":test_support", 2036 ":test_support",
2036 "//base", 2037 "//base",
2037 "//net", 2038 "//net",
2038 ] 2039 ]
2039 dict = "data/http/http.dict" 2040 dict = "//testing/libfuzzer/fuzzers/dicts/generated/net_http_proxy_client_sock et_fuzzer.dict"
2040 } 2041 }
2041 2042
2042 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 2043 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
2043 sources = [ 2044 sources = [
2044 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 2045 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
2045 ] 2046 ]
2046 deps = [ 2047 deps = [
2047 ":net_fuzzer_test_support", 2048 ":net_fuzzer_test_support",
2048 "//base", 2049 "//base",
2049 "//net", 2050 "//net",
(...skipping 27 matching lines...) Expand all
2077 fuzzer_test("net_url_request_fuzzer") { 2078 fuzzer_test("net_url_request_fuzzer") {
2078 sources = [ 2079 sources = [
2079 "url_request/url_request_fuzzer.cc", 2080 "url_request/url_request_fuzzer.cc",
2080 ] 2081 ]
2081 deps = [ 2082 deps = [
2082 ":net_fuzzer_test_support", 2083 ":net_fuzzer_test_support",
2083 ":test_support", 2084 ":test_support",
2084 "//base", 2085 "//base",
2085 "//net", 2086 "//net",
2086 ] 2087 ]
2087 dict = "data/http/http.dict" 2088 dict =
2089 "//testing/libfuzzer/fuzzers/dicts/generated/net_url_request_fuzzer.dict"
2088 } 2090 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/dictionary_generator.py » ('j') | testing/libfuzzer/dictionary_generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698